summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c83a2ea2a2991c5d50c7f8080b175db5ffc4ec94 (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
35
36
37
38
# Maintainer: Jonas Köritz <jonas.koeritz at gmail dot com>
# Contributor: 	Olivier Médoc <o_medoc at yahoo dot fr>

pkgname=('libvhdi-git')
pkgver=r142.58c6aa2
pkgrel=1
pkgdesc="Library and tools to access the Virtual Hard Disk (VHD) image format"
arch=('x86_64')
url="https://github.com/libyal/libvhdi"
license=('LGPL3')
depends=('python2' 'python' 'fuse')
makedepends=('gcc' 'git' 'automake' 'autoconf' 'gettext' 'libtool' 'pkg-config')
provides=('libvhdi' 'python2-libvhdi' 'python3-libvhdi')

source=("${pkgname}::git://github.com/libyal/libvhdi.git")
md5sums=('SKIP')

pkgver() {
    cd "$pkgname"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
    cd "$pkgname"
    ./synclibs.sh
    ./autogen.sh
}

build() {
    cd "$pkgname"
    ./configure --prefix=/usr --enable-python2 --enable-python3
    make
}

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