aports/community/erofs-utils/APKBUILD
Milan P. Stanić feabecfed3 community/erofs-utils: upgrade to 1.8.6
add patch created by Natanael Copa <ncopa@alpinelinux.org> to fix build
error of readdir64, pread64 and lseek64
2025-05-07 07:48:54 +00:00

48 lines
1.1 KiB
Text

# Contributor: Milan P. Stanić <mps@arvanta.net>
# Maintainer: Milan P. Stanić <mps@arvanta.net>
pkgname=erofs-utils
pkgver=1.8.6
pkgrel=0
pkgdesc="userspace utilities for erofs filesystem"
url="https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git"
arch="all"
license="GPL-2.0-or-later"
makedepends="
autoconf
automake
libtool
lz4-dev
util-linux-dev
zlib-dev
"
subpackages="$pkgname-doc"
source="https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git/snapshot/erofs-utils-$pkgver.tar.gz
fix-read-pread-seek-64.patch
"
prepare() {
default_prepare
autoreconf -fiv
}
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
07c9c30f6fb0b889b8c664f233e7510a15aba46f097a4bd40fb6f8c379f578bba14694f6fa4d12099816d1c7944beaedafa687795e5c08f69cb916119cfd446f erofs-utils-1.8.6.tar.gz
a4515c087d2a1126c656f740b83ac00c0034d0c66e46e0fa3a064f950292e46e5c06e2679da88a10a3b721861ff87dc386f53cd7d4f77431516d9a6dd60d9902 fix-read-pread-seek-64.patch
"