mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-31 13:32:10 +01:00
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libtool
|
|
pkgver=2.4.6
|
|
pkgrel=7
|
|
pkgdesc="A generic library support script"
|
|
arch="all"
|
|
license="LGPL-2.0+"
|
|
url="https://www.gnu.org/software/libtool"
|
|
source="https://ftp.gnu.org/gnu/libtool/${pkgname}-${pkgver}.tar.gz
|
|
libtool-fix-cross-compile.patch
|
|
"
|
|
depends="bash libltdl"
|
|
makedepends="m4 help2man"
|
|
checkdepends="gawk autoconf automake gzip"
|
|
subpackages="libltdl-static libltdl $pkgname-doc"
|
|
|
|
# 1 test presently fails on Alpine (need to investigate):
|
|
# 69: shlibpath_overrides_runpath FAILED (shlibpath.at:68)
|
|
options="libtool !check"
|
|
|
|
builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
default_prepare
|
|
update_config_sub
|
|
}
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
# Test 70 and 117 are known to fail
|
|
# Test 170 repeats the entire test suite with shorter max_cmd_len
|
|
make check TESTSUITEFLAGS="1-69 71-116 118-169"
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
libltdl() {
|
|
pkgdesc="Runtime libraries for GNU Libtool Dynamic Module Loader"
|
|
depends=
|
|
mkdir -p "$subpkgdir/usr/lib"
|
|
mv "$pkgdir/usr/lib/libltdl.so"* "$subpkgdir/usr/lib/"
|
|
}
|
|
|
|
sha512sums="3233d81cb2739a54b840a0a82064eebbfaa4fb442fb993a35d6bd41d8395c51f038c90ae048b9252f172d0a5bbfb4b36e2b13d4477001f9ff7d4124237819a18 libtool-2.4.6.tar.gz
|
|
aa14cadd70a633520249fa3a6a4c45b309a980380e62dd5982b3ae842c478a77401ad809297fceebd167c167b0a19f380e6a6c295bc75d1029d56d3bf262b209 libtool-fix-cross-compile.patch"
|