* update lbzip2 to 2.5-6

This commit is contained in:
Alexander Baldeck 2024-08-24 09:03:20 +02:00
parent ac3dfafe11
commit d1deb7414c
2 changed files with 19 additions and 4 deletions

15
lbzip2/.SRCINFO Normal file
View File

@ -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

View File

@ -5,14 +5,14 @@
pkgname=lbzip2 pkgname=lbzip2
pkgver=2.5 pkgver=2.5
pkgrel=5 pkgrel=6
pkgdesc="A parallel, SMP-based, bzip2-compatible compression utility" 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" url="http://lbzip2.org"
license=('GPL3') license=('GPL3')
depends=('glibc') depends=('glibc')
makedepends=('patch') 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) lbzip2-gnulib-build-fix.patch)
sha256sums=('eec4ff08376090494fa3710649b73e5412c3687b4b9b758c93f73aa7be27555b' sha256sums=('eec4ff08376090494fa3710649b73e5412c3687b4b9b758c93f73aa7be27555b'
'5eca4665b147655ce99f9ae5eff50e7db2714ba957e41e20b50d80533aeb6bef') '5eca4665b147655ce99f9ae5eff50e7db2714ba957e41e20b50d80533aeb6bef')
@ -26,7 +26,7 @@ prepare() {
build() { build() {
cd "${srcdir}"/$pkgname-$pkgver cd "${srcdir}"/$pkgname-$pkgver
./configure --prefix=/usr ./configure --prefix=/usr --build=${CHOST}
make make
} }