core/libtool/Pkgfile

22 lines
558 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: Per Lid<69>n, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=libtool
2006-02-23 18:44:26 +01:00
version=1.5.22
2006-02-23 16:26:10 +01:00
release=1
source=(http://mirrors.sunsite.dk/gnu/$name/$name-$version.tar.gz \
libtool.1 libtoolize.1)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/info
mkdir -p $PKG/usr/man/man1
cp ../libtool.1 ../libtoolize.1 $PKG/usr/man/man1
chown -R root.root $PKG
2006-02-23 18:44:26 +01:00
rm -rf $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}