summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 256b57517e80e3a785eed25737113ec3666acfcf (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
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>
# Contributor: halhen <halhen at k2h dot se>

pkgname=xmlfs
pkgver=0.1.1
pkgrel=2
pkgdesc='Mount XML files as directory structures'
license=('GPL')
arch=('x86_64' 'i686')
url='http://github.com/halhen/xmlfs'
depends=('fuse' 'libxml2')
source=("git://github.com/halhen/xmlfs.git#tag=$pkgver")
md5sums=('SKIP')

build() {
  make -C "$pkgname"
}

package() {
  cd "$pkgname"

  make PREFIX=/usr MANPREFIX=/usr/man DESTDIR="$pkgdir" install
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:set ts=2 sw=2 et: