blob: 3af28a147be8c721f1bcd96d01c5e8abb002014a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
_name=guile-fuse
arch=(any)
conflicts=($_name)
depends=("guile>=2" fuse)
license=(gpl3+)
makedepends=(git gcc)
md5sums=(SKIP)
pkgdesc='guile bindings for fuse (filesystems in userspace) as a shared library'
pkgname=$_name-git
pkgrel=1
pkgver=24
provides=($_name)
source=("$_name::git://git.sph.mn/$_name")
url="http://sph.mn"
pkgver() {
cd $_name
git rev-list --count HEAD
}
build() {
cd $_name
./exe/compile-c
}
package() {
cd $_name
./exe/install "$pkgdir"
}
|