blob: 30747d7ff15d21a2dcd0fb3ac5ed9ea7984663fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: A FUSE filesystem for mirroring a directory to another directory, similar to 'mount --bind', with permission settings.
# URL: http://bindfs.org/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: fuse
name=bindfs
version=1.14.9
release=1
source=("https://bindfs.org/downloads/${name}-${version}.tar.gz")
build() {
cd ${name}-${version}
./configure --prefix=/usr
make CPUOPTIMIZATIONS="${CFLAGS}"
make DESTDIR=$PKG install
}
|