blob: a345915f1da5d85268e60b1e39a50bf1f1f2143c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=slibtool
pkgver=0.5.18
pkgrel=0
pkgdesc="a surrogate libtool implementation, written in C"
url=" http://git.midipix.org/cgit.cgi/slibtool"
arch="all"
license="MIT"
depends=""
depends_dev=""
makedepends=""
install=""
subpackages=""
source="http://midipix.org/dl/slibtool/slibtool-$pkgver.tar.xz"
builddir="$srcdir"/slibtool-$pkgver
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man \
|| return 1
make || return 1
}
check() {
cd "$builddir"
./bin/slibtool --version
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install || return 1
}
sha512sums="096da9a1475217b7cb95834249bc63b076d8df0ebbca484634b1109d3ee3824e30b7f14da1b6f130f10d4be1cd63032bab7c264748f3bf099f4fa1808fde52f6 slibtool-0.5.18.tar.xz"
|