mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +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:
|
||||||
unalz: Tip: UHC is the same as CP949 and CP949 contains EUCKR charset.
|
unalz: Tip: UHC is the same as CP949 and CP949 contains EUCKR charset.
|
||||||
unalz:
|
unalz:
|
||||||
unalz: Homepage: http://www.kippler.com/win/unalz/
|
unalz: Website : http://www.kippler.com/win/unalz/
|
||||||
unalz:
|
unalz:
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
# Slackware build script for unalz
|
# Slackware build script for unalz
|
||||||
|
|
||||||
# Written by crocket ( crockabiscuit@yahoo.com )
|
# Written by crocket (crockabiscuit@gmail.com)
|
||||||
|
|
||||||
PRGNAM=unalz
|
PRGNAM=unalz
|
||||||
VERSION=${VERSION:-0.65}
|
VERSION=${VERSION:-0.65}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-2}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
|
@ -46,22 +46,26 @@ tar xvf $CWD/$PRGNAM-$VERSION.tgz
|
||||||
mv $PRGNAM $PRGNAM-$VERSION
|
mv $PRGNAM $PRGNAM-$VERSION
|
||||||
cd $PRGNAM-$VERSION
|
cd $PRGNAM-$VERSION
|
||||||
chown -R root:root .
|
chown -R root:root .
|
||||||
find . \
|
# the permissions are completely wrong.
|
||||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
find . -type f -exec chmod 644 '{}' \; -o \
|
||||||
-exec chmod 755 {} \; -o \
|
-type d -exec chmod 755 '{}' \;
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
|
||||||
-exec chmod 644 {} \;
|
|
||||||
|
|
||||||
# Apply a makefile patch.
|
|
||||||
patch -p1 < $CWD/unalz_makefile.diff
|
patch -p1 < $CWD/unalz_makefile.diff
|
||||||
|
|
||||||
# convert the encoding from CP949 to UTF8
|
# convert the encoding from CP949 to UTF8
|
||||||
# CP949 == UHC, and CP949 contains EUCKR character set.
|
# CP949 == UHC, and CP949 contains EUCKR character set.
|
||||||
# So using CP949 or UHC takes care of texts in EUCKR encoding
|
# 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 \; \
|
for file in $(find . -type f)
|
||||||
-exec mv {}_tmp {} \;
|
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
|
make install DESTDIR=$PKG
|
||||||
|
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
|
|
|
@ -6,5 +6,5 @@ MD5SUM="e4db2c4e3c8f6f5ee414b68bc55288e5"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
MAINTAINER="crocket"
|
MAINTAINER="crocket"
|
||||||
EMAIL="crockabiscuit@yahoo.com"
|
EMAIL="crockabiscuit@gmail.com"
|
||||||
APPROVED="rworkman"
|
APPROVED="Niels Horn"
|
||||||
|
|
Loading…
Reference in a new issue