summaryrefslogtreecommitdiffstats
path: root/system/unalz/unalz.SlackBuild
diff options
context:
space:
mode:
author crocket <crockabiscuit@gmail.com>2011-09-01 19:00:11 -0300
committer Niels Horn <niels.horn@slackbuilds.org>2011-09-01 19:00:11 -0300
commitee45fabaff7cd3c24e049488c1bb14e8db5b4fb7 (patch)
tree9f1c0b411aea8a8239d8b8245b47412020696522 /system/unalz/unalz.SlackBuild
parent62208016f70b9525a4ebe89a3852ad34ad732636 (diff)
downloadslackbuilds-ee45fabaff7cd3c24e049488c1bb14e8db5b4fb7.tar.gz
slackbuilds-ee45fabaff7cd3c24e049488c1bb14e8db5b4fb7.tar.xz
system/unalz: Updated e-mail mainainer + cleanup script.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'system/unalz/unalz.SlackBuild')
-rw-r--r--system/unalz/unalz.SlackBuild26
1 files changed, 15 insertions, 11 deletions
diff --git a/system/unalz/unalz.SlackBuild b/system/unalz/unalz.SlackBuild
index defc3a1af1..3b3a19ac90 100644
--- a/system/unalz/unalz.SlackBuild
+++ b/system/unalz/unalz.SlackBuild
@@ -2,11 +2,11 @@
# Slackware build script for unalz
-# Written by crocket ( crockabiscuit@yahoo.com )
+# Written by crocket (crockabiscuit@gmail.com)
PRGNAM=unalz
VERSION=${VERSION:-0.65}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -46,22 +46,26 @@ tar xvf $CWD/$PRGNAM-$VERSION.tgz
mv $PRGNAM $PRGNAM-$VERSION
cd $PRGNAM-$VERSION
chown -R root:root .
-find . \
- \( -perm 777 -o -perm 775 -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 {} \;
+# the permissions are completely wrong.
+find . -type f -exec chmod 644 '{}' \; -o \
+ -type d -exec chmod 755 '{}' \;
-# Apply a makefile patch.
patch -p1 < $CWD/unalz_makefile.diff
# convert the encoding from CP949 to UTF8
# CP949 == UHC, and CP949 contains EUCKR character set.
# So using CP949 or UHC takes care of texts in EUCKR encoding
-find . -type f -exec iconv --from-code=CP949 --to-code=UTF8 {} --output={}_tmp \; \
- -exec mv {}_tmp {} \;
+for file in $(find . -type f)
+do
+ iconv -f CP949 -t UTF8 $file > $file.tmp
+ mv $file.tmp $file
+done
-make linux-utf8
+# Use our CFLAGS
+sed -i "s/^CFLAGS =/CFLAGS +=/" Makefile
+
+CFLAGS="$SLKCFLAGS" \
+ make linux-utf8
make install DESTDIR=$PKG
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \