initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

32
lrzip/PKGBUILD Normal file
View File

@@ -0,0 +1,32 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=lrzip
pkgver=0.641
pkgrel=1
pkgdesc='Multi-threaded compression with rzip/lzma, lzo, and zpaq'
url='https://github.com/ckolivas/lrzip'
license=('GPL-2')
arch=('i686' 'x86_64')
depends=('lzo')
makedepends=('nasm')
source=("https://github.com/ckolivas/lrzip/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=('cb14dda15485faa24cb840dd94ecd4741bd47464770ae8b27f97b5c263d8a32e40ceb17b288f0f70426598ef2acf84b091593fc8cf7a0f2db0abde88d09a301f')
build() {
cd ${pkgname}-${pkgver}
CFLAGS="$CFLAGS -fomit-frame-pointer"
CXXFLAGS="$CXXFLAGS -fomit-frame-pointer"
./autogen.sh --prefix=/usr "$flags"
make
}
check() {
make -C "${pkgname}-${pkgver}" -k check
}
package() {
make -C "${pkgname}-${pkgver}" DESTDIR="$pkgdir" install-strip
install -Dm644 "${srcdir}/${pkgname}-${pkgver}/COPYING" -t "${pkgdir}/usr/share/licenses/$pkgname"
}