mirror of https://github.com/sipwise/rtpengine.git
Change-Id: If72f91c4433a7363638482520cb2d942681353ee
(cherry picked from commit 6bb87132ac
)
pull/1736/head
parent
0e581862db
commit
e738a47a93
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Target dist: Debian Bookworm
|
||||
DIST=trixie
|
||||
|
||||
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…
Reference in new issue