mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-16 06:02:45 +01:00
30 lines
698 B
Plaintext
30 lines
698 B
Plaintext
# Maintainer: judd <jvinet@zeroflux.org>
|
|
pkgname=libtool
|
|
pkgver=2.2.6b
|
|
pkgrel=1
|
|
pkgdesc="A generic library support script"
|
|
license='GPL'
|
|
url="http://www.gnu.org/software/libtool"
|
|
source="ftp://ftp.gnu.org/pub/gnu/libtool/${pkgname}-${pkgver}.tar.gz"
|
|
depends="bash libltdl"
|
|
subpackages="libltdl $pkgname-doc"
|
|
|
|
build() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
libltdl() {
|
|
pkgdesc="Runtime libraries for GNU Libtool Dynamic Module Loade"
|
|
mkdir -p "$subpkgdir/usr/lib"
|
|
mv "$pkgdir/usr/lib/libltdl.so"* "$subpkgdir/usr/lib/"
|
|
}
|
|
|
|
md5sums="07da460450490148c6d2df0f21481a25 libtool-2.2.6b.tar.gz"
|