summaryrefslogtreecommitdiff
path: root/manualPorts/bindfs/Pkgfile
blob: 943f87c72b33afb3c8fde312d020561e770075a9 (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.17.3
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

}