PKGBUILDs/community/unionfs-fuse/PKGBUILD

30 lines
853 B
Bash
Raw Normal View History

2022-10-03 00:01:21 +00:00
# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
# Contributor: Smith Dhumbumroong <zodmaner at gmail dot com>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - add -D_FILE_OFFSET_BITS=64 to CPPFLAGS
pkgname=unionfs-fuse
2023-03-22 12:11:00 +00:00
pkgver=3.3
2022-10-03 00:01:21 +00:00
pkgrel=1
pkgdesc="A user space unionfs implementation"
arch=('x86_64')
url="https://github.com/rpodgorny/unionfs-fuse"
license=('BSD')
depends=('fuse3')
source=("$pkgname-$pkgver.tar.gz::https://github.com/rpodgorny/unionfs-fuse/archive/v${pkgver}.tar.gz")
2023-03-22 12:11:00 +00:00
sha256sums=('4cf39954d26a585a399d0fc12edf826f38d630f50669c2fe954853ec9d6eeb88')
2022-10-03 00:01:21 +00:00
build() {
cd $pkgname-$pkgver
CPPFLAGS+=" -D_FILE_OFFSET_BITS=64"
make
}
package() {
cd $pkgname-$pkgver
make SBINDIR="/bin" DESTDIR="$pkgdir" PREFIX=/usr install
install -Dm644 "$srcdir"/$pkgname-$pkgver/LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}