diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-11 12:44:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-09-11 12:44:26 +0000 |
commit | 44e0a744c22f045a90d4802bc7e516a3874c879a (patch) | |
tree | fc424072f858fb07790e9069f0c1e28e5db115a0 /testing/chrpath/APKBUILD | |
parent | 992ca2985e4c6b1d09c6e3f8af709ed24b59e1d1 (diff) | |
download | aports-44e0a744c22f045a90d4802bc7e516a3874c879a.tar.bz2 aports-44e0a744c22f045a90d4802bc7e516a3874c879a.tar.xz |
testing/chrpath: new aport
Modify rpath of compiled programs
ftp://ftp.hungry.com/pub/hungry/chrpath/
Diffstat (limited to 'testing/chrpath/APKBUILD')
-rw-r--r-- | testing/chrpath/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/chrpath/APKBUILD b/testing/chrpath/APKBUILD new file mode 100644 index 000000000..29cb87b75 --- /dev/null +++ b/testing/chrpath/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: +# Maintainer: +pkgname=chrpath +pkgver=0.13 +pkgrel=0 +pkgdesc="Modify rpath of compiled programs" +url="ftp://ftp.hungry.com/pub/hungry/chrpath/" +arch="all" +license="GPL+" +depends="" +makedepends="" +install="" +subpackages="$pkgname-doc" +source="http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/chrpath-$pkgver.tar.gz" + +_builddir="$srcdir"/chrpath-$pkgver +prepare() { + local i + 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" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" docdir=/usr/share/doc/$pkgname-$pkgver \ + install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="b73072a8fbba277558c50364b65bb407 chrpath-0.13.tar.gz" |