figure out .deb files for real haha totally this time
parent
ab57a11a25
commit
edd5d87477
9
Makefile
9
Makefile
|
@ -10,11 +10,18 @@ all: default pack
|
||||||
|
|
||||||
systemlibs: systemlibtarget pack
|
systemlibs: systemlibtarget pack
|
||||||
|
|
||||||
|
dpkg: debtarget pack dpkg-build
|
||||||
|
|
||||||
windows: wtarget wpack
|
windows: wtarget wpack
|
||||||
|
|
||||||
default:
|
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
|
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
|
||||||
|
|
||||||
|
debtarget:
|
||||||
|
cat deb.patch > plchatdeb.py
|
||||||
|
cat plchat.py >> plchatdeb.py
|
||||||
|
python3 -m nuitka --follow-imports --file-reference-choice=runtime --nofollow-import-to=certifi --include-module=keyring.backends.kwallet --include-module=keyring.backends.chainer --enable-plugin=qt-plugins --include-qt-plugins=all --python-flag=-O -o plchat plchatdeb.py
|
||||||
|
|
||||||
systemlibtarget:
|
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
|
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
|
||||||
|
|
||||||
|
@ -39,7 +46,7 @@ pack:
|
||||||
cp LICENSE dist
|
cp LICENSE dist
|
||||||
cp COPYING dist
|
cp COPYING dist
|
||||||
|
|
||||||
dpkg:
|
dpkg-build:
|
||||||
mkdir -p deb/usr/lib
|
mkdir -p deb/usr/lib
|
||||||
mv dist deb/usr/lib/plchat
|
mv dist deb/usr/lib/plchat
|
||||||
dpkg --build deb
|
dpkg --build deb
|
||||||
|
|
Loading…
Reference in New Issue