diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-04-23 02:53:12 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-04-23 02:53:12 +0000 |
commit | 39171bed085d1510864f2d8863eac75de5141029 (patch) | |
tree | a9280c21aa54cccd7dac9464d1f0c5aecbfe6b6a /trunk | |
parent | 5010f43221e78278061ec17192a9206ac9a3bd05 (diff) | |
download | simplepkg-39171bed085d1510864f2d8863eac75de5141029.tar.gz simplepkg-39171bed085d1510864f2d8863eac75de5141029.tar.bz2 |
see CHANGELOG for details
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@497 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk')
-rw-r--r-- | trunk/doc/CHANGELOG | 1 | ||||
-rw-r--r-- | trunk/mkbuild/perl.mkSlackBuild | 4 | ||||
-rwxr-xr-x | trunk/simplepkg.SlackBuild | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/trunk/doc/CHANGELOG b/trunk/doc/CHANGELOG index f621017..bf63002 100644 --- a/trunk/doc/CHANGELOG +++ b/trunk/doc/CHANGELOG @@ -6,6 +6,7 @@ simplepkg changelog - perl.mkSlackBuild: - gpg_signature_check: support for [[SIGNING KEY ID]] parameter + - minor fix 0.6pre23 ======== diff --git a/trunk/mkbuild/perl.mkSlackBuild b/trunk/mkbuild/perl.mkSlackBuild index 2a8c53d..130e2cd 100644 --- a/trunk/mkbuild/perl.mkSlackBuild +++ b/trunk/mkbuild/perl.mkSlackBuild @@ -212,10 +212,8 @@ make test make install DESTDIR="$PKG" || exit $ERROR_INSTALL # Fix .packlist -cd $PKG - string="`echo $PKG | sed -e 's/\//\\\\\//g'`" -for file in `find -name .packlist`; do +for file in `find $PKG -name .packlist`; do sed -e "s/^$string//g" $file > $file.tmp mv $file.tmp $file done diff --git a/trunk/simplepkg.SlackBuild b/trunk/simplepkg.SlackBuild index 453cf30..dee58e5 100755 --- a/trunk/simplepkg.SlackBuild +++ b/trunk/simplepkg.SlackBuild @@ -18,7 +18,7 @@ PACKAGE="simplepkg" PACK_DIR="package-$PACKAGE" BUILD=${BUILD:=1rha} -VERSION="0.6pre23" +VERSION="0.6pre24" ARCH="noarch" LIBEXEC="/usr/libexec/$PACKAGE" BINDIR="/usr/bin" |