core/libtool/Pkgfile

21 lines
572 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A generic library support script
# URL: http://www.gnu.org/software/libtool/
# Maintainer: CRUX System Team, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=libtool
2008-09-08 11:07:18 +02:00
version=2.2.6a
2007-07-06 08:51:44 +02:00
release=1
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz \
2008-09-08 11:07:18 +02:00
libtool.1 libtoolize.1)
2006-02-23 16:26:10 +01:00
build() {
2008-09-08 11:07:18 +02:00
cd $name-${version/a/}
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
mkdir -p $PKG/usr/man/man1
2006-09-24 11:50:23 +02:00
cp $SRC/libtool.1 $SRC/libtoolize.1 $PKG/usr/man/man1
rm -rf $PKG/usr/{info,share/info}
rm $PKG/usr/share/libtool/libltdl/README
2006-02-23 16:26:10 +01:00
}