summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4c90e9bb54314d01a56ba5c98097a442f8e4c6ca (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
# Maintainer: David McIlwraith <archaios at archaios dot net>
pkgname=libqcow
pkgver=20150105
pkgrel=1
pkgdesc="Library and tools to support QEMU copy-on-write image format (QCOW, QCOW2), including a FUSE-based mount utility"
url="https://github.com/libyal/libqcow/"
arch=('i686' 'x86_64')
license=('LGPL3')
depends=('fuse' 'openssl')
makedepends=('zlib' 'openssl' 'python')
source=("https://github.com/libyal/libqcow/archive/$pkgver.tar.gz")
sha256sums=('1c93bb151506ecaf7a681a24444f2538f6541b700f4a29f39d536dc988895789')

build(){
	cd $srcdir/$pkgname-$pkgver
	./synclibs.sh
	./autogen.sh
	./configure --prefix=/usr --enable-python --enable-verbose-output --enable-debug-output --enable-wide-character-type
	make
}

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