From e2bf3407ccc0826455de4062fea8024fa5ca044e Mon Sep 17 00:00:00 2001 From: PktSurf Date: Thu, 31 Oct 2024 23:06:24 +0530 Subject: [PATCH] Fixed installpkg script in base/pkgtools to reflect new package build filenames --- base/.buildlist.base | 1 + base/pkgtools/scripts/installpkg | 4 ++-- base/pkgtools/smbuild | 29 +++++++++++++++++++++++++++++ 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100755 base/pkgtools/smbuild diff --git a/base/.buildlist.base b/base/.buildlist.base index de4c96a..57efce0 100644 --- a/base/.buildlist.base +++ b/base/.buildlist.base @@ -62,6 +62,7 @@ tar sysklogd gawk sed +pkgtools zip unzip popt diff --git a/base/pkgtools/scripts/installpkg b/base/pkgtools/scripts/installpkg index bc84315..1640cfc 100644 --- a/base/pkgtools/scripts/installpkg +++ b/base/pkgtools/scripts/installpkg @@ -141,8 +141,8 @@ for package in $* ; do mkdir -p $TMP/scan$$ ( cd $TMP/scan$$ ; $packagecompression -dc | $TAR xf - install ) < $package 2> /dev/null ( cd $TMP/scan$$ ; $packagecompression -dc | $TAR xf - usr/share ) < $package 2> /dev/null - if [ "$( find $TMP/scan$$/usr/share -name "$packagebase.SMBuild" | wc -l)" == "1" ] ; then - source "$( find $TMP/scan$$/usr/share -name "$packagebase.SMBuild" )" + if [ "$( find $TMP/scan$$/usr/share -name "smbuild" | wc -l)" == "1" ] ; then + source "$( find $TMP/scan$$/usr/share -name "smbuild" )" # The build file contains the $DESC variable. We use that as our description DESCRIPTION="$(echo $desc)" # Set a custom variable once we source the application build file diff --git a/base/pkgtools/smbuild b/base/pkgtools/smbuild new file mode 100755 index 0000000..6011766 --- /dev/null +++ b/base/pkgtools/smbuild @@ -0,0 +1,29 @@ +# Maintainer: PktSurf +app=pkgtools +version=14.2 +build=3sml +homepage="https://slackware.uk/slackware/slackware-14.2/source/a/pkgtools/" +download="https://slackware.uk/slackware/slackware-14.2/source/a/pkgtools/" +desc="The Slackware package maintenance system, modified for SMLinux" +requires="tar grep gawk sed bash util-linux coreutils" + +prepbuilddir() { + ARCH=noarch + mkandenterbuilddir + rm -rf $app-$version +} + +build() { + # Install Slackware script manpages: + mkdir -p $pkg/usr/bin $pkg/usr/share/man/man8 + cp $srcdir/manpages/* $pkg/usr/share/man/man8/ + cp $srcdir/scripts/* $pkg/usr/bin/ + + chown root:root $pkg/usr/bin/* + chmod 755 $pkg/usr/bin/* + + mkfinalpkg +} + +sha512sums=" +"