blob: 863e7bd83384207358f31c0fc3ef53f582479aff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# 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.28.0
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="!check" # No test suite
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/trapexit/$pkgname/archive/$pkgver.tar.gz"
prepare() {
default_prepare
echo "$pkgver" > "$builddir"/VERSION
}
build() {
export GIT_CEILING_DIRECTORIES="$srcdir"
make OPTS="$CXXFLAGS"
}
package() {
make PREFIX="/usr" DESTDIR="$pkgdir" install
}
sha512sums="7585fb04534c721d0463ecb743b4267ee6413ee58a839088110cfcf0fc7224aca95532895cfee5afa75e3779f2ab4bb9c72ad538761b26d9601dedeff33f6994 mergerfs-2.28.0.tar.gz"
|