diff options
Diffstat (limited to 'system/cdcopy/cdcopy.SlackBuild')
-rw-r--r-- | system/cdcopy/cdcopy.SlackBuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/system/cdcopy/cdcopy.SlackBuild b/system/cdcopy/cdcopy.SlackBuild index 24e7f96434..e6c68bb7aa 100644 --- a/system/cdcopy/cdcopy.SlackBuild +++ b/system/cdcopy/cdcopy.SlackBuild @@ -15,7 +15,7 @@ TAG=${TAG:-_SBo} CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp +OUTPUT=${OUTPUT:-/tmp} rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -33,23 +33,18 @@ install -D -m 0755 cdcopy $PKG/usr/bin/cdcopy # Note: some versions of 'cdrecord' support ATAPI: or ATA: directives too install -D -m 0644 cdcopy.conf $PKG/etc/cdcopy.conf.new -# Compress and install the manpage mkdir -p $PKG/usr/man/man1 -gzip -9 cdcopy.1 > $PKG/usr/man/man1/cdcopy.1.gz +gzip -9 cdcopy.1 +install -D -m 0644 cdcopy.1.gz $PKG/usr/man/man1/cdcopy.1.gz -# Copy program documentation into the package mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a [A-Z]* debian/copyright $PKG/usr/doc/$PRGNAM-$VERSION - -# Also, include the SlackBuild script in the documentation directory cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -# Copy the slack-desc (and a custom doinst.sh if necessary) into ./install mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/doinst.sh > $PKG/install/doinst.sh -# Make the package; be sure to leave it in $OUTPUT cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |