update: rename lfs-12.2 to lfs

This commit is contained in:
wyj
2025-03-14 01:33:44 -04:00
parent 02fd8b18b8
commit a4b9b9fdc5
56 changed files with 0 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
pkgname="lz4"
pkgver="1.10.0"
pkgdesc='Extremely fast compression algorithm'
homepage="https://lz4.org/"
license=('GPL-2.0-or-later')
sources=("lz4-1.10.0.tar.gz")
urls=("https://github.com/lz4/lz4/releases/download/v1.10.0/lz4-1.10.0.tar.gz")
md5sums=("dead9f5f1966d9ae56e1e32761e4e675")
src_prepare() {
tar -xf ${DIST_DIR}/${pkgname}-${pkgver}/${sources[0]} --strip-components=1
}
src_build() {
make BUILD_STATIC=no PREFIX=/usr
}
src_check() {
make -j1 check
}
src_install() {
make BUILD_STATIC=no PREFIX="${pkgdir}/usr" install
}