21 lines
464 B
Plaintext
21 lines
464 B
Plaintext
|
# Description: AAlib is an portable ascii art GFX library.
|
||
|
# URL: http://aa-project.sourceforge.net/aalib
|
||
|
# Packager: pierre at nutyx dot org
|
||
|
# Depends on: xorg-libx11
|
||
|
|
||
|
name=aalib
|
||
|
version=1.4rc5
|
||
|
release=2
|
||
|
|
||
|
source=(http://downloads.sourceforge.net/aa-project/aalib-1.4rc5.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd aalib-*
|
||
|
./configure --prefix=/usr \
|
||
|
--mandir=/usr/share/man \
|
||
|
--infodir=/usr/share/info --disable-static
|
||
|
make
|
||
|
make DESTDIR=$PKG install
|
||
|
rm -f $PKG/usr/share/info/dir
|
||
|
}
|