summaryrefslogtreecommitdiff
path: root/manualPorts/bindfs/Pkgfile
blob: fc84736ef152142d86127b6cd84ca51fb2ad3442 (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.13.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

}