diff --git a/lbzip2/.SRCINFO b/lbzip2/.SRCINFO new file mode 100644 index 0000000000..e3850e36aa --- /dev/null +++ b/lbzip2/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = lbzip2 + pkgdesc = A parallel, SMP-based, bzip2-compatible compression utility + pkgver = 2.5 + pkgrel = 6 + url = http://lbzip2.org + arch = x86_64 + license = GPL3 + makedepends = patch + depends = glibc + source = https://deb.debian.org/debian/pool/main/l/lbzip2/lbzip2_2.5.orig.tar.bz2 + source = lbzip2-gnulib-build-fix.patch + sha256sums = eec4ff08376090494fa3710649b73e5412c3687b4b9b758c93f73aa7be27555b + sha256sums = 5eca4665b147655ce99f9ae5eff50e7db2714ba957e41e20b50d80533aeb6bef + +pkgname = lbzip2 diff --git a/lbzip2/PKGBUILD b/lbzip2/PKGBUILD index df3ff18e1d..85dbf11a6a 100644 --- a/lbzip2/PKGBUILD +++ b/lbzip2/PKGBUILD @@ -5,14 +5,14 @@ pkgname=lbzip2 pkgver=2.5 -pkgrel=5 +pkgrel=6 pkgdesc="A parallel, SMP-based, bzip2-compatible compression utility" -arch=( x86_64 powerpc64le powerpc ) +arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) url="http://lbzip2.org" license=('GPL3') depends=('glibc') makedepends=('patch') -source=(http://deb.debian.org/debian/pool/main/l/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2 +source=(https://deb.debian.org/debian/pool/main/l/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2 lbzip2-gnulib-build-fix.patch) sha256sums=('eec4ff08376090494fa3710649b73e5412c3687b4b9b758c93f73aa7be27555b' '5eca4665b147655ce99f9ae5eff50e7db2714ba957e41e20b50d80533aeb6bef') @@ -26,7 +26,7 @@ prepare() { build() { cd "${srcdir}"/$pkgname-$pkgver - ./configure --prefix=/usr + ./configure --prefix=/usr --build=${CHOST} make }