diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/chrpath | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/chrpath')
-rw-r--r-- | community/chrpath/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/chrpath/PKGBUILD b/community/chrpath/PKGBUILD new file mode 100644 index 000000000..c978d17a9 --- /dev/null +++ b/community/chrpath/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 55552 2011-09-14 09:27:16Z andrea $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> + +pkgname=chrpath +pkgver=0.13 +pkgrel=3 +pkgdesc="Change or delete the rpath or runpath in ELF files" +arch=('i686' 'x86_64') +url="http://directory.fsf.org/project/chrpath/" +license=('GPL2') +depends=('glibc') +source=("http://ftp.tux.org/pub/X-Windows/ftp.hungry.com/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('b73072a8fbba277558c50364b65bb407') + +build() { + cd "${srcdir}"/$pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}"/$pkgname-$pkgver + make DESTDIR="${pkgdir}" docdir=/usr/share/doc/chrpath install +} |