chrpath: initial commit, version 0.16

This commit is contained in:
Tim Biermann 2019-08-11 21:54:21 +02:00
parent bbed267452
commit 3247eca367
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 30 additions and 0 deletions

7
chrpath/.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/chrpath
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/chrpath.1.gz

5
chrpath/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF37E0/tbMFvyuR71fggLii860QHuKj07FEAzKBr3z1D2KZdKfp1Sx0YRMkdrXIVNVFLIi60Z6HwN8XaB42BkwFwg=
SHA256 (Pkgfile) = d6ce5a1749a2d2e13ad4e38a9b2b4b8329996785bd47d134872cb9df8a6170f1
SHA256 (.footprint) = 63bf775cb82da089e4f0bd8e323b033d906ac04eab1858e2a603855d440ea955
SHA256 (chrpath_0.16.orig.tar.gz) = bb0d4c54bac2990e1bdf8132f2c9477ae752859d523e141e72b3b11a12c26e7b

18
chrpath/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Change or delete the rpath or runpath in ELF files
# URL: http://directory.fsf.org/project/chrpath/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on:
name=chrpath
version=0.16
release=1
source=(http://http.debian.net/debian/pool/main/c/chrpath/chrpath_$version.orig.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/doc
}