IGNOREPATH=/etc:/home:/var:/dev:/boot:/root:/tmp:/usr/local:/bin:/sbin:/mnt:/usr/src STRIPLIB=y STRIPBIN=y VERSION=1.4rc5 PROGNAME="aalib $VERSION" DESC="\ \n\ aalib (ASCII Art library) _1l1vlvlvlvlvlvlvlvlvvl=. \n\ __111llvl+' __...._ +1lv11=. \n\ AA-lib is an ASCII art graphics _11vllvlv+ =vlvlvl1= /1vlvv1i=_ \n\ library. Internally, the AA-lib _vvllvlvlv= -+vlvlvlvlvlvlvlvdvl=_ \n\ API is similar to other graphics _:lvlvlvlvlv=. --^-^1lvlvlrlvv1s \n\ libraries, but it renders the =llvlvvlvlvv11lvl=.... -lvlevlvlvv \n\ the output into ASCII art (like =lvlvlvlvll-^+1vv11111v_ vlkllvllvl \n\ the example to the right :^) =lvlvlvlvl1 +1vv1v1lv _llvlvlvlvl \n\ The developers of AA-lib are +1lv |vlvl' -^-^- _1olvlvlvlv' \n\ Jan Hubicka, Thomas A. K. Kjaer, -1vl |lvlvlvlvlvlvlvlvv1vlvlvlvlv+. \n\ Tim Newsome, and Kamil Toman. +1 ^^^^^^^^^^^^^^^^^^^^^^^^vlv- \n\ -+uvlvlvlvlvlvlvlvlvlvlvlvl+_ \n\ -vlvlvlvlvlvlvlvllvlvl-'" BUILD=1 MAINTAINER="Mark Post " SOURCE=http://prdownloads.sourceforge.net/aa-project/aalib-1.4rc5.tar.gz PKGNAME=aalib-$VERSION-s390x-$BUILD TAG=OPT compile() { tar -zxvf $CWD/aalib-$VERSION.tar.gz cd aalib-1.4.0/ CFLAGS=-O2 ./configure --prefix=/usr \ --libdir=/usr/lib64 \ --sysconfdir=/etc \ s390x-slackware-linux make -j3 } install() { make install DESTDIR=/package-aalib mkdir -p /package-aalib/usr/doc/aalib-$VERSION cp -a ANNOUNCE AUTHORS COPYING ChangeLog INSTALL NEWS README README.OS2 \ /package-aalib/usr/doc/aalib-$VERSION ( cd /package-aalib/usr/info rm -f *.gz gzip -9 * ) ( cd /package-aalib/usr/man/ for dir in 1 3; do ( cd man$dir rm -f *.gz gzip -9 *.$dir ) done ) } attributes() { chown -R root.bin $PKG/package-aalib/usr/bin/ } special() { cd $PKG mv package-aalib/* ./ rmdir package-aalib cd $CTL cat $CWD/slack-desc > slack-desc sed -e 's%package-aalib/%%' doinst.sh > doinst.sh.new cat doinst.sh.new > doinst.sh rm doinst.sh.new }