contrib/libtool/Pkgfile
2006-11-13 21:12:21 +01:00

28 lines
628 B
Plaintext

# Maintainer: Han Boetes <han@mijncomputer.nl>
# Packager: Per Lidén <per@fukt.bth.se>
# Description: The GNU Portable Library Tool
# URL: http://www.gnu.org/software/libtool/libtool.html
name=libtool
version=1.5.22
release=1
source="
http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz
libtool.1
libtoolize.1
"
build()
{
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man \
--infodir=/usr/info
make
make install DESTDIR=$PKG
install -d $PKG/usr/man/man1
install -m 644 $SRC/libtool{,ize}.1 $PKG/usr/man/man1
rm -rf $PKG/usr/info
}