2021-04-15 15:16:38 -05:00
|
|
|
ifeq ($(PREFIX),)
|
2021-04-17 12:38:40 -05:00
|
|
|
PREFIX := /usr/local/
|
|
|
|
endif
|
|
|
|
ifeq ($(LIBDIR),)
|
|
|
|
LIBDIR := lib/
|
2021-04-15 15:16:38 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2021-04-16 20:59:52 -05:00
|
|
|
all: default pack
|
|
|
|
|
|
|
|
systemlibs: systemlibtarget pack
|
|
|
|
|
|
|
|
default:
|
2021-04-22 15:00:35 -05:00
|
|
|
python3 -m nuitka --follow-imports --file-reference-choice=runtime --include-module=certifi --include-module=keyring.backends.kwallet --include-module=keyring.backends.chainer --enable-plugin=qt-plugins --include-qt-plugins=all --python-flag=-O -o plchat plchat.py
|
2021-04-17 15:31:25 -05:00
|
|
|
|
2021-04-16 20:59:52 -05:00
|
|
|
systemlibtarget:
|
2021-04-22 15:00:35 -05:00
|
|
|
python3 -m nuitka --file-reference-choice=runtime --nofollow-imports --follow-import-to=misc --follow-import-to=monkeypatch --follow-import-to=pleroma --follow-import-to=timeconvert --follow-import-to=videowidget --follow-import-to=audiowidget --python-flag=-O -o plchat plchat.py
|
2021-04-16 20:59:52 -05:00
|
|
|
|
2021-04-24 15:08:45 -05:00
|
|
|
windows:
|
|
|
|
cat windows.patch > plchatwindows.py
|
|
|
|
cat plchat.py >> plchatwindows.py
|
|
|
|
makensis -VERSION || die "No makensis in path"
|
|
|
|
python3 -m nsist installer.cfg
|
2021-04-24 15:25:05 -05:00
|
|
|
mv build/nsis/PlChat_*.exe
|
|
|
|
zip plchat_windows.zip PlChat_*.exe
|
2021-04-24 15:08:45 -05:00
|
|
|
|
2021-04-16 20:59:52 -05:00
|
|
|
pack:
|
|
|
|
mkdir dist
|
|
|
|
mv plchat dist
|
|
|
|
cp fedi.svg dist
|
|
|
|
cp fedi.ico dist
|
|
|
|
cp send.svg dist
|
|
|
|
cp unread.svg dist
|
2021-04-17 15:31:25 -05:00
|
|
|
cp README.md dist
|
|
|
|
cp LICENSE dist
|
|
|
|
cp COPYING dist
|
2021-04-16 20:59:52 -05:00
|
|
|
|
2021-04-24 15:21:38 -05:00
|
|
|
dpkg:
|
2021-04-24 15:08:45 -05:00
|
|
|
mkdir -p deb/usr/lib
|
2021-04-18 19:57:22 -05:00
|
|
|
mv dist deb/usr/lib/plchat
|
|
|
|
dpkg --build deb
|
|
|
|
mv deb.deb plchat.deb
|
|
|
|
|
2021-04-16 20:59:52 -05:00
|
|
|
clean:
|
2021-04-16 22:22:31 -05:00
|
|
|
rm -r dist || true
|
|
|
|
|
|
|
|
install:
|
2021-04-17 12:38:40 -05:00
|
|
|
mkdir $(PREFIX)$(LIBDIR)
|
|
|
|
install dist/plchat $(PREFIX)$(LIBDIR)
|
|
|
|
install dist/fedi.ico $(PREFIX)$(LIBDIR)
|
|
|
|
install dist/fedi.svg $(PREFIX)$(LIBDIR)
|
|
|
|
install dist/send.svg $(PREFIX)$(LIBDIR)
|
|
|
|
install dist/unread.svg $(PREFIX)$(LIBDIR)
|
2021-04-18 12:41:45 -05:00
|
|
|
ln -sf $(PREFIX)$(LIBDIR)plchat $(PREFIX)bin/plchat
|