input-remapper/build.sh

14 lines
302 B
Bash
Raw Normal View History

2020-11-29 09:42:20 +00:00
#!/usr/bin/env bash
# build the .deb and .appimage files
# https://ubuntuforums.org/showthread.php?t=1002909
2020-11-29 11:16:08 +00:00
dist=dist
2020-11-29 11:10:35 +00:00
name=key-mapper-0.1.0
2020-11-29 09:42:20 +00:00
2020-11-29 11:16:08 +00:00
python3 setup.py sdist --dist-dir $dist
2020-11-29 11:10:35 +00:00
tar -C deb -xzf $dist/$name.tar.gz
cp $dist/DEBIAN $dist/$name -r
dpkg-deb -b $dist/$name $name.deb
rm $dist/$name -r
2020-11-29 11:05:54 +00:00