1
0
forked from extern/zsync

add build-package

This commit is contained in:
thorsten.spille 2024-02-09 22:41:53 +01:00
parent b63c3c3924
commit fe7f2753c9

19
build-package Normal file
View File

@ -0,0 +1,19 @@
#!/bin/bash
version=$1
package=bashclub-zsync
deb_package=${package}_${version}_all.deb
echo "$(date) creating DEBIBAN/control..."
cat << EOF > $package/DEBIAN/control
Package: $package
Version: $version
Architecture: all
Essential: no
Priority: optional
Depends: openssh-server, proxmox-ve, zfs-auto-snapshot, zfsutils-linux
Maintainer: bashclub
Description: The deb package for $package $version maintained from bashclub.
EOF
dpkg-deb --build $package $deb_package