blob: 93e5c00bc79cbfb83bdaa763bee6f58da3a24591 (
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
|
# Maintainer: Michael Zhou <zhoumichaely@gmail.com>
pkgname=unionfs-fuse
pkgver=0.24
pkgrel=0
pkgdesc="Union Filesystem in Userspace"
url="http://podgorny.cz/moin/UnionFsFuse"
arch="all"
license="GPL"
depends=""
makedepends="fuse-dev libiconv-dev"
subpackages="${pkgname}-doc"
source="http://podgorny.cz/unionfs-fuse/releases/${pkgname}-${pkgver}.tar.bz2"
_builddir="${srcdir}/${pkgname}-${pkgver}"
prepare() {
cd "$_builddir"
}
build() {
cd "$_builddir"
make || return 1
}
package() {
cd "$_builddir"
mkdir -p "$pkgdir"/usr/share/man/man8/
make DESTDIR="$pkgdir" PREFIX=/usr install || return 1
}
md5sums="ab00f252c55a9a7252fca13a53260bf5 unionfs-fuse-0.24.tar.bz2"
|