summaryrefslogtreecommitdiffstats
path: root/aufs3-util/PKGBUILD
blob: 6b9c79e416fb82e9f87b00676b5f0075dacdc1ec (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
30
31
32
33
34
# Maintainer: Calimero <calimerotekni@free.fr>

pkgname=aufs3-util
_gitbranch=3.9
pkgver=20140108
pkgrel=1
pkgdesc="Another Unionfs Implementation that supports NFS branches"
arch=('i686' 'x86_64')
url="http://aufs.sourceforge.net/"
license=('GPL2')
makedepends=('linux-drd' 'git')
replaces=('aufs2-util')
source=("${pkgname}::git://git.code.sf.net/p/aufs/aufs-util#branch=aufs${_gitbranch}")
md5sums=('SKIP')

pkgver() {
  cd "${pkgname}"
  date -d @$(git log -n1 --pretty=format:%ct) '+%Y%m%d'
}

build() {
  cd "${srcdir}/${pkgname}"
  sed -i 's/($|\\\\.x)/($|\\\\.x|-[0-9]*$)/' ver.c
  make
}

package() {
  cd "${srcdir}/${pkgname}"
  make DESTDIR="${pkgdir}" install

  #fixes for the archlinux /usr/bin move
  mv "${pkgdir}"/sbin/* "${pkgdir}"/usr/bin/
  rmdir "${pkgdir}"/sbin
}