mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
Although the upstream repository is called libfuse, the distributed source archives are called fuse, and this is how most other distributions name the package.
14 lines
248 B
Lua
14 lines
248 B
Lua
cflags{
|
|
'-D FUSE_USE_VERSION=31',
|
|
'-I $dir',
|
|
'-I pkg/fuse/src/include',
|
|
}
|
|
|
|
exe('sshfs', {
|
|
'sshfs.c', 'nocache.c', '$builddir/pkg/fuse/libfuse.a',
|
|
}, {'pkg/fuse/fetch'})
|
|
file('bin/sshfs', '755', '$outdir/sshfs')
|
|
man{'$dir/sshfs.1'}
|
|
|
|
fetch 'git'
|