patchelf: initial commit, version 0.10

This commit is contained in:
Tim Biermann 2020-06-07 14:49:11 +00:00
parent 6a657866d9
commit d65b9eab26
3 changed files with 30 additions and 0 deletions

7
patchelf/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/patchelf
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/patchelf.1.gz

5
patchelf/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3z3qAf1YPBh8oFCXhAKaPSQPDO6gBtEjM0DgeEmvWnKzXkrZ/8z7rTzMQO4H7Jy/knRHPEwlGGEUxiehKSSe0Q4=
SHA256 (Pkgfile) = 27eeb0bb372e13db6ed09832abf1a90b910ccc724c196f5c47dd959694f72d8f
SHA256 (.footprint) = 7d5293986368adaab29dd15ee291b553402a652597dd29111a35ca3ffa5471f6
SHA256 (patchelf-0.10.tar.gz) = b3cb6bdedcef5607ce34a350cf0b182eb979f8f7bc31eae55a93a70a3f020d13

18
patchelf/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# 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
# Depends on:
name=patchelf
version=0.10
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
}