system/yash: New maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
100b202453
commit
bc39abbe0c
|
@ -1,5 +1,5 @@
|
|||
Yash, yet another shell, is a POSIX-compliant command line shell
|
||||
written by Watanabe Yuki (aka magicant) in C99 (ISO/IEC 9899:1999). It
|
||||
was originally written as a work on a university course assignment but
|
||||
the code has been re-written from scratch to meet the requirement of
|
||||
POSIX. Yash is intended to be the most POSIX-compliant shell in the world.
|
||||
Yash, yet another shell, is a POSIX-compliant command line shell written
|
||||
by Watanabe Yuki (aka magicant) in C99 (ISO/IEC 9899:1999). It was
|
||||
originally written as a work on a university course assignment, but the
|
||||
code has been re-written from scratch to meet the requirement of POSIX.
|
||||
Yash is intended to be the most POSIX-compliant shell in the world.
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
# Slackware build script for yash
|
||||
|
||||
# Copyright 2015-2018 Leonard Schmidt <lems@gmx.net>
|
||||
# Copyright 2018 Hunter Sezen <orbea@fredslev.dk>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -24,7 +25,7 @@
|
|||
|
||||
PRGNAM=yash
|
||||
VERSION=${VERSION:-2.47}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -54,7 +55,7 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
set -eu
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
|
@ -69,11 +70,11 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
sh ./configure \
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--mandir=/usr/man \
|
||||
--docdir=/usr/doc/$PRGNAM-$VERSION
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--bindir=/bin \
|
||||
--mandir=/usr/man
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
@ -88,7 +89,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \;
|
|||
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a NEWS README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a COPYING NEWS NEWS.ja README README.ja THANKS $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
|
|
|
@ -6,5 +6,5 @@ MD5SUM="b84a978d8b47336cdb92fafd8473cce6"
|
|||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES=""
|
||||
MAINTAINER="Leonard Schmidt"
|
||||
EMAIL="lems@gmx.net"
|
||||
MAINTAINER="Hunter Sezen"
|
||||
EMAIL="orbea@fredslev.dk"
|
||||
|
|
Loading…
Reference in New Issue