system/macutils: Remove template comment.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
0169b8abdc
commit
139c1940e9
|
@ -1,3 +1,5 @@
|
|||
macutils (tools to handle Macintosh files)
|
||||
|
||||
macutils is a package that contains a number of utilities that deal
|
||||
with Macintosh files on a Unix system. This is useful for converting
|
||||
BinHex-encoded files to the smaller MacBinary format before transferring
|
||||
|
|
|
@ -22,9 +22,6 @@ if [ -z "$ARCH" ]; then
|
|||
esac
|
||||
fi
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||
exit 0
|
||||
|
@ -56,11 +53,8 @@ tar xvf $CWD/${PRGNAM}_${TARVER}.orig.tar.gz
|
|||
cd $PRGNAM
|
||||
tar xvf $CWD/$PRGNAM*.debian.tar.gz
|
||||
chown -R root:root .
|
||||
find -L . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \; -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \;
|
||||
find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \
|
||||
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+
|
||||
|
||||
# The code was written in like 1995, but the debian maintainers have been
|
||||
# keeping it up-to-date with modern toolchains, so use their patches.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
PRGNAM="macutils"
|
||||
VERSION="2.0b3_16"
|
||||
HOMEPAGE="http://packages.debian.org/sid/macutils"
|
||||
DOWNLOAD="http://ftp.debian.org/debian/pool/main/m/macutils/macutils_2.0b3.orig.tar.gz \
|
||||
http://ftp.debian.org/debian/pool/main/m/macutils/macutils_2.0b3-16.debian.tar.gz"
|
||||
HOMEPAGE="https://packages.debian.org/sid/macutils"
|
||||
DOWNLOAD="https://deb.debian.org/debian/pool/main/m/macutils/macutils_2.0b3.orig.tar.gz \
|
||||
https://deb.debian.org/debian/pool/main/m/macutils/macutils_2.0b3-16.debian.tar.gz"
|
||||
MD5SUM="4ff71b1634ea503398c33994458fbe40 \
|
||||
23c33ea631db73c653c788de71181809"
|
||||
DOWNLOAD_x86_64=""
|
||||
|
|
Loading…
Reference in New Issue