diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2025-05-26 00:38:33 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2025-07-13 00:14:00 -0500 |
commit | 1de565ad5eab1b3ef30fa3892c0d7fa0a7d09431 (patch) | |
tree | 0e55aab3b4ec086d736d8ab852d6d6f1b8e8ae1e | |
parent | 7aa9b51bd5145440e16ae032b16013a237a14366 (diff) | |
download | packages-1de565ad5eab1b3ef30fa3892c0d7fa0a7d09431.tar.gz packages-1de565ad5eab1b3ef30fa3892c0d7fa0a7d09431.tar.bz2 packages-1de565ad5eab1b3ef30fa3892c0d7fa0a7d09431.tar.xz packages-1de565ad5eab1b3ef30fa3892c0d7fa0a7d09431.zip |
system/chrpath: Update to 0.18, new home
Moved to Codeberg since Debian Alioth is no more. License has been
clarified in README so that has been updated as well.
-rw-r--r-- | system/chrpath/APKBUILD | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/system/chrpath/APKBUILD b/system/chrpath/APKBUILD index 7bdb44c39..3acec2098 100644 --- a/system/chrpath/APKBUILD +++ b/system/chrpath/APKBUILD @@ -1,17 +1,23 @@ -# Maintainer: +# Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=chrpath -pkgver=0.16 -pkgrel=2 +pkgver=0.18 +pkgrel=0 pkgdesc="Modify rpath of compiled programs" -url="https://github.com/jwilk-mirrors/chrpath" +url="https://codeberg.org/pere/chrpath" arch="all" -license="GPL-2.0-only" +license="GPL-2.0+" depends="" -makedepends="" +makedepends="autoconf automake" subpackages="$pkgname-doc" -source="https://alioth-archive.debian.org/releases/chrpath/chrpath/0.16/chrpath-0.16.tar.gz" +source="$pkgname-$pkgver.tar.gz::https://codeberg.org/pere/chrpath/archive/release-$pkgver.tar.gz" + +unpack() { + default_unpack + mv $srcdir/$pkgname $srcdir/$pkgname-$pkgver +} build() { + ./bootstrap ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -32,4 +38,4 @@ package() { install } -sha512sums="aa04d490f78bff20a56fe20539cec10218c0772a668909eda8324ca825f51e8ef92001e95d9c316e79a145a043c9c327ec94d1a82e104ab408ca1021832745aa chrpath-0.16.tar.gz" +sha512sums="7b9d7005defc15ccec9631dcb79df1c79d701353e67fe6f733b1d80c95103d2a5852f7cd13ead6b43977682337a74db13af8f17667dd9394f3ad06eaca8bea3f chrpath-0.18.tar.gz" |