summaryrefslogtreecommitdiffstats
path: root/main/ltrace/APKBUILD
blob: 46b6bf4de3eeeb9d2ab0a2f4685fee61c338bd91 (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
39
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=ltrace
pkgver=0.6.0
pkgrel=0
pkgdesc="Tracks runtime library calls in dynamically linked programs"
url="http://ltrace.alioth.debian.org/"
arch="all"
license="GPL"
depends=
makedepends="libelf-dev autoconf automake libtool"
subpackages="$pkgname-doc"
source="http://dev.archlinux.org/~foutrelis/sources/ltrace/$pkgname-$pkgver.tar.xz"


_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"
	./autogen.sh
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--disable-werror \
		|| return 1
	make
}

package() {
	cd "$_builddir"
	make install INSTALL=install DESTDIR="$pkgdir" || return 1
}
md5sums="042592865eb55efb56cb7a10207ca94d  ltrace-0.6.0.tar.xz"