Skip to content

Commit 78c5a75

Browse files
linuxmaniacrfuchs
authored andcommitted
MT#60788 pkg/deb: add Ubuntu 24.04 (Noble Numbat)
Change-Id: Ifa8a590ff61992849d029ceb06371098ae71f5d5 (cherry picked from commit 150bc85)
1 parent e633d2d commit 78c5a75

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pkg/deb/backports/noble

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
#
3+
# Target dist: Ubuntu Noble
4+
DIST=noble
5+
6+
if [ ! -d ../../pkg/deb ] ; then
7+
echo "script needs to be executed at pkg/deb dir" >&2
8+
exit 1
9+
fi
10+
11+
rm -rf ${DIST}
12+
cp -r debian ${DIST}
13+
14+
if command -v wrap-and-sort &>/dev/null ; then
15+
wrap-and-sort -sat -d ${DIST}
16+
else
17+
echo "WARN: wrap-and-sort (Debian package devscripts) not available."
18+
fi
19+
20+
# clean backports scripts
21+
rm -rf ${DIST}/backports
22+
exit 0

0 commit comments

Comments
 (0)