Pleroma chat client in PyQt5
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
plchat/Makefile

63 lines
2.2 KiB

ifeq ($(PREFIX),)
PREFIX := /usr/local/
endif
ifeq ($(LIBDIR),)
LIBDIR := lib/
endif
PRODUCTVER=0101
all: default pack
fresh: clean default pack
systemlibs: systemlibtarget pack
deb: debtarget pack packdeb
windows: windowstarget
default:
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
windowstarget:
python3 -m nuitka --follow-imports --include-module=win32ctypes --enable-plugin=qt-plugins --include-qt-plugins=all --windows-disable-console --windows-icon-from-ico=fedi.ico --windows-company-name=plchat --windows-product-name=plchat --windows-product-version=$(PRODUCTVER) --python-flag=-O -o plchat plchat.py
debtarget:
echo "You will need to make .deb packages using bash, ensuring you are doing so."
sudo ./deb/DEBIAN/postinst
source /usr/lib/plchat/venv/bin/activate
pip3 install keyring notify-py appdirs python-dateutil requests urllib3 websockets PyQt5 python-magic
python3 -m nuitka --file-reference-choice=runtime --follow-imports --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
systemlibtarget:
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
pack:
mkdir dist
mv plchat dist
cp fedi.svg dist
cp fedi.ico dist
cp send.svg dist
cp unread.svg dist
cp README.md dist
cp LICENSE dist
cp COPYING dist
packdeb:
mkdir -p deb/usr/lib/plchat
mv dist deb/usr/lib/plchat
dpkg --build deb
mv deb.deb plchat.deb
clean:
rm -r dist || true
install:
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)
ln -sf $(PREFIX)$(LIBDIR)plchat $(PREFIX)bin/plchat