blob: 8d2009a7001980628994409e24157f3f7331e592 (
plain)
1 # Description: A small utility to modify the dynamic linker and RPATH of ELF executables.
2 # URL: https://github.com/Nixos/patchelf
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=patchelf
6 version=0.17.2
7 release=1
8 source=(https://github.com/Nixos/$name/archive/$version/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 ./bootstrap.sh
13 ./configure --prefix=/usr
14 make
15 make DESTDIR=$PKG install
16 rm -r $PKG/usr/share/doc
17 }
|