summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-09-11 13:14:08 +0000
committerFabian Affolter <fabian@affolter-engineering.ch>2012-09-21 22:25:23 +0000
commit299660bfe583ccf68ecb1a41e1c5d0abecccfc4e (patch)
tree9e280c63c9375b0671c75ef7c09f96465bf63edd
parent5753984347bd83f421953e12d350bf81f78187bb (diff)
downloadaports-299660bfe583ccf68ecb1a41e1c5d0abecccfc4e.tar.bz2
aports-299660bfe583ccf68ecb1a41e1c5d0abecccfc4e.tar.xz
main/chrpath: moved from testing
-rw-r--r--testing/chrpath/APKBUILD45
1 files changed, 0 insertions, 45 deletions
diff --git a/testing/chrpath/APKBUILD b/testing/chrpath/APKBUILD
deleted file mode 100644
index 29cb87b75..000000000
--- a/testing/chrpath/APKBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# 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"