git » chrpath.git » main » tree

[main] / PKGBUILD

# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>

pkgname=chrpath
pkgver=0.17
pkgrel=1
pkgdesc="Change or delete the rpath or runpath in ELF files"
arch=('armv7h' 'aarch64')
url="https://codeberg.org/pere/chrpath"
license=('GPL2')
depends=('glibc')
makedepends=('git')
source=("git+https://codeberg.org/pere/chrpath.git#tag=release-$pkgver")
sha256sums=('SKIP')

prepare() {
  cd "${srcdir}"/$pkgname
  sh bootstrap
}

build() {
  cd "${srcdir}"/$pkgname
  ./configure --prefix=/usr --mandir=/usr/share/man
  make
}

package() {
  cd "${srcdir}"/$pkgname
  make DESTDIR="${pkgdir}" docdir=/usr/share/doc/chrpath install
}