pkg/deb: support Ubuntu Resolute 26.04 LTS

pull/2118/head
Victor Seva 3 weeks ago
parent a5e1a839ba
commit c41bdf5ab8
No known key found for this signature in database
GPG Key ID: 7D7B65C42A0EC8B2

@ -0,0 +1,22 @@
#!/bin/bash
#
# Target dist: Ubuntu Resolute
DIST=resolute
if [ ! -d ../../pkg/deb ] ; then
echo "script needs to be executed at pkg/deb dir" >&2
exit 1
fi
rm -rf ${DIST}
cp -r debian ${DIST}
if command -v wrap-and-sort &>/dev/null ; then
wrap-and-sort -sat -d ${DIST}
else
echo "WARN: wrap-and-sort (Debian package devscripts) not available."
fi
# clean backports scripts
rm -rf ${DIST}/backports
exit 0
Loading…
Cancel
Save