mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-05 07:52:26 +01:00
Seems to be a toolchain issue [1]. [1]: https://sourceware.org/bugzilla/show_bug.cgi?id=24673
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
# Contributor: Nathan Caldwell <saintdev@gmail.com>
|
|
# Maintainer: Nathan Caldwell <saintdev@gmail.com>
|
|
# NOTE: For now we must use vendored libfuse, see the URL below for details.
|
|
# https://github.com/trapexit/mergerfs/blob/2.27.0/README.md#why-was-libfuse-embedded-into-mergerfs
|
|
pkgname=mergerfs
|
|
pkgver=2.32.4
|
|
pkgrel=0
|
|
pkgdesc="A FUSE based union filesystem"
|
|
url="https://github.com/trapexit/mergerfs"
|
|
arch="all"
|
|
license="ISC"
|
|
depends="libattr fuse"
|
|
makedepends="autoconf automake libtool gettext-dev attr-dev linux-headers"
|
|
options="suid !check" # No test suite
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/trapexit/mergerfs/archive/$pkgver.tar.gz"
|
|
|
|
# Temporarily allow textrels on riscv64.
|
|
[ "$CARCH" = "riscv64" ] && options="$options textrels"
|
|
|
|
prepare() {
|
|
default_prepare
|
|
echo "$pkgver" > "$builddir"/VERSION
|
|
}
|
|
|
|
build() {
|
|
export GIT_CEILING_DIRECTORIES="$srcdir"
|
|
make OPTS="$CXXFLAGS"
|
|
}
|
|
|
|
package() {
|
|
make PREFIX="/usr" DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="248b5e16c49f0775a5173b10940e45fa401ff81a44e2f081135f118a4deb9f79104d77e1c7424926da703123753a75e8f0590396e44c9ecd3bfdd1f27d7ced17 mergerfs-2.32.4.tar.gz"
|