Browse Source

TT#124273 pkg: add ubuntu focal support

Change-Id: I8dda18a825dc878286e247c6d79dbae2e0c5c178
mika/coverity
Victor Seva 4 years ago
parent
commit
9e2bf2bbda
1 changed files with 21 additions and 0 deletions
  1. +21
    -0
      pkg/deb/debian/backports/focal

+ 21
- 0
pkg/deb/debian/backports/focal View File

@ -0,0 +1,21 @@
#!/bin/bash
#
# Target dist: Ubuntu Focal
DIST=focal
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}
# No libbcg729-dev package
sed -i -e '/libbcg729-dev/d' ${DIST}/control
wrap-and-sort -sat -d ${DIST}
# clean backports scripts
rm -rf ${DIST}/backports
exit 0

Loading…
Cancel
Save