mirror of
https://github.com/mupen64plus/mupen64plus-ui-python.git
synced 2025-04-02 10:51:53 -04:00
The pkg-games team in debian prepared a package under https://anonscm.debian.org/cgit/pkg-games/mupen64plus-ui-python.git/ - this one can be also be used to build the m64py*.deb from the upstream repository. The Debian specific patches were dropped and the code to create a version number based on the version number in the code was readded.
7 lines
210 B
Bash
Executable file
7 lines
210 B
Bash
Executable file
#!/bin/sh
|
|
apt-get -y install build-essential debhelper dh-python python3 python3-pyqt5 pyqt5-dev-tools
|
|
rm -rf ../../debian/
|
|
cp -fr ../debian/ ../../
|
|
cd ../../
|
|
dpkg-buildpackage -rfakeroot -tc -b
|
|
rm -rf debian/
|