chrpath: update to 0.17

This commit is contained in:
Juergen Daubert 2023-12-10 12:52:16 +01:00
parent 7b509fb3c4
commit 3a47b79917
2 changed files with 15 additions and 12 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/Rs6sPbEDes7IxCL0umA2OHX44UcVvFQphXhaRgQKeQQlBRRSCIHsVNn++HhXHnR4tytYHMhwi8TE4uDtHz+Dgo=
SHA256 (Pkgfile) = efb710f4b161164d98a1b0ce843a7c6a6da126db63df2623c8f001c204a1daa2
RWSE3ohX2g5d/QMlDyWoU0R5k4sHrdU4xuQnSHgXg3FzVO69Fn0smuDi8mglXnKp0Y9FpdjvoChGToHvpfByCEY6hSc9qGBREwI=
SHA256 (Pkgfile) = 5a7173059439033788df94cd264f70408104c4032468296814b5e13e646cf75e
SHA256 (.footprint) = 63bf775cb82da089e4f0bd8e323b033d906ac04eab1858e2a603855d440ea955
SHA256 (chrpath_0.16.orig.tar.gz) = bb0d4c54bac2990e1bdf8132f2c9477ae752859d523e141e72b3b11a12c26e7b
SHA256 (chrpath-0.17.tar.gz) = 199444d0831553c31e4655ad0e87bd825d650f2011f109dbfeddb38eca0b4356

View File

@ -1,17 +1,20 @@
# Description: Change or delete the rpath or runpath in ELF files
# URL: https://directory.fsf.org/project/chrpath/
# URL: https://codeberg.org/pere/chrpath
# Maintainer: Juergen Daubert, jue at crux dot nu
name=chrpath
version=0.16
version=0.17
release=1
source=(http://http.debian.net/debian/pool/main/c/chrpath/chrpath_$version.orig.tar.gz)
source=(https://codeberg.org/pere/chrpath/archive/release-$version.tar.gz)
renames=($name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man
make
make DESTDIR=$PKG install
rm -fr $PKG/usr/doc
cd $name
./bootstrap
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/doc
}