blob: b7314fb8b49f12c81b0e40c88027f9a0c3f0b1f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Librairie pour le support de scripts génériques
# URL: http://www.gnu.org/software/libtool/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
name=libtool226
_name=libtool
version=2.2.6b
release=1
source=(http://ftp.gnu.org/gnu/$_name/$_name-$version.tar.gz )
build() {
cd $_name-*
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
if [ -f $PKG/usr/share/info/dir ]; then
rm $PKG/usr/share/info/dir
fi
}
|