2ea8673a04
TODO: change the plugin API to take advantage of this This change is backwards-compatible (as in “should not break anything”)
50 lines
1.6 KiB
Makefile
50 lines
1.6 KiB
Makefile
prefix=/usr/local
|
|
LIBDIR=$(prefix)/lib
|
|
BINDIR=$(prefix)/bin
|
|
DATADIR=$(prefix)/share
|
|
DOCDIR=$(DATADIR)/doc
|
|
LOCALEDIR=$(DATADIR)/locale
|
|
MANDIR=$(DATADIR)/man
|
|
|
|
all: Makefile
|
|
cd src/ && python3 ../setup.py build_ext --inplace
|
|
|
|
clean:
|
|
find ./ -name \*.pyc -delete
|
|
find ./ -name \*.pyo -delete
|
|
find ./ -name \*~ -delete
|
|
find ./ -name "#*#" -delete
|
|
find ./ -name "*.html" -delete
|
|
|
|
install: all
|
|
mkdir -p $(DESTDIR)$(prefix)
|
|
install -d $(DESTDIR)$(LOCALEDIR) $(DESTDIR)$(BINDIR) $(DESTDIR)$(DATADIR)/poezio $(DESTDIR)$(DATADIR)/poezio/data $(DESTDIR)$(DATADIR)/poezio/src/ $(DESTDIR)$(DATADIR)/poezio/src $(DESTDIR)$(DATADIR)/poezio/data/themes $(DESTDIR)$(MANDIR)/man1 $(DESTDIR)$(DOCDIR)/poezio $(DESTDIR)$(DATADIR)/poezio/plugins
|
|
|
|
cp -R data/* $(DESTDIR)$(DATADIR)/poezio/data/
|
|
rm $(DESTDIR)$(DATADIR)/poezio/data/poezio.1
|
|
|
|
cp -R plugins/* $(DESTDIR)$(DATADIR)/poezio/plugins
|
|
|
|
cp -R doc/* $(DESTDIR)$(DOCDIR)/poezio/
|
|
cp README CHANGELOG COPYING $(DESTDIR)$(DOCDIR)/poezio/
|
|
|
|
install -m644 data/poezio.1 $(DESTDIR)$(MANDIR)/man1/
|
|
for sourcefile in `ls -1 src/*.py src/*.so` ; do \
|
|
install -m644 $$sourcefile $(DESTDIR)$(DATADIR)/poezio/src; \
|
|
done
|
|
|
|
echo "#!/usr/bin/env sh" > $(DESTDIR)$(BINDIR)/poezio
|
|
echo "python3 $(DATADIR)/poezio/src/poezio.py \$$@" >> $(DESTDIR)$(BINDIR)/poezio
|
|
chmod 755 $(DESTDIR)$(BINDIR)/poezio
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(BINDIR)/poezio
|
|
rm -rf $(DESTDIR)$(DATADIR)/poezio
|
|
rm -rf $(DESTDIR)$(MANDIR)/man1/poezio.1
|
|
|
|
doc:
|
|
find doc -name \*.txt -exec asciidoc -a toc {} \;
|
|
pot:
|
|
xgettext src/*.py --from-code=utf-8 --keyword=_ -o locale/poezio.pot
|
|
|
|
.PHONY : doc
|