From 4fd853fc3e159765692f8c2c8a037c1ad1ed7f81 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sun, 27 Dec 2015 01:54:03 -0500 Subject: [PATCH] build-package.sh: Use deb naming convention "The Debian binary package file names conform to the following convention: _-_.deb" - https://www.debian.org/doc/manuals/debian-faq/ch-pkg_basics.en.html#s-pkgname --- build-package.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-package.sh b/build-package.sh index 22b6e40a..270fc403 100755 --- a/build-package.sh +++ b/build-package.sh @@ -516,7 +516,7 @@ HERE $TERMUX_TAR -czf $SUB_PKG_PACKAGE_DIR/control.tar.gz . # Create the actual .deb file: - TERMUX_SUBPKG_DEBFILE=$TERMUX_COMMON_DEBDIR/${SUB_PKG_NAME}-${TERMUX_PKG_FULLVERSION}_${SUB_PKG_ARCH}.deb + TERMUX_SUBPKG_DEBFILE=$TERMUX_COMMON_DEBDIR/${SUB_PKG_NAME}_${TERMUX_PKG_FULLVERSION}_${SUB_PKG_ARCH}.deb ar cr $TERMUX_SUBPKG_DEBFILE \ $TERMUX_COMMON_CACHEDIR/debian-binary \ $SUB_PKG_PACKAGE_DIR/control.tar.gz \ @@ -696,7 +696,7 @@ termux_step_create_debscripts # Create control.tar.gz $TERMUX_TAR -czf $TERMUX_PKG_PACKAGEDIR/control.tar.gz . # In the .deb ar file there should be a file "debian-binary" with "2.0" as the content: -TERMUX_PKG_DEBFILE=$TERMUX_COMMON_DEBDIR/${TERMUX_PKG_NAME}-${TERMUX_PKG_FULLVERSION}_${TERMUX_ARCH}.deb +TERMUX_PKG_DEBFILE=$TERMUX_COMMON_DEBDIR/${TERMUX_PKG_NAME}_${TERMUX_PKG_FULLVERSION}_${TERMUX_ARCH}.deb # Create the actual .deb file: ar cr $TERMUX_PKG_DEBFILE \ $TERMUX_COMMON_CACHEDIR/debian-binary \ -- 2.11.0