mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
system/unalz: Updated e-mail mainainer + cleanup script.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
62208016f7
commit
ee45fabaff
3 changed files with 18 additions and 14 deletions
|
@ -15,5 +15,5 @@ unalz: as zip, rar, alz, and etc.
|
|||
unalz:
|
||||
unalz: Tip: UHC is the same as CP949 and CP949 contains EUCKR charset.
|
||||
unalz:
|
||||
unalz: Homepage: http://www.kippler.com/win/unalz/
|
||||
unalz: Website : http://www.kippler.com/win/unalz/
|
||||
unalz:
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -6,5 +6,5 @@ MD5SUM="e4db2c4e3c8f6f5ee414b68bc55288e5"
|
|||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="crocket"
|
||||
EMAIL="crockabiscuit@yahoo.com"
|
||||
APPROVED="rworkman"
|
||||
EMAIL="crockabiscuit@gmail.com"
|
||||
APPROVED="Niels Horn"
|
||||
|
|
Loading…
Reference in a new issue