contrib/patchelf/Pkgfile

18 lines
441 B
Plaintext
Raw Normal View History

2020-06-07 16:49:11 +02:00
# Description: A small utility to modify the dynamic linker and RPATH of ELF executables.
# URL: https://github.com/Nixos/patchelf
# Maintainer: Tim Biermann, tbier at posteo dot de
name=patchelf
2022-07-16 12:18:06 +02:00
version=0.15.0
2020-06-07 16:49:11 +02:00
release=1
source=(https://github.com/Nixos/$name/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
./bootstrap.sh
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}