updated on Fri Jan 6 08:01:17 UTC 2012
[aur-mirror.git] / apiextractor / PKGBUILD
blobae57232e57667b8ceecbfeff8a881166af3cafbb
1 # Maintainer: Matthias Maennich <arch@maennich.net>
2 # Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
3 pkgname=apiextractor
4 pkgver=0.10.10
5 pkgrel=1
6 pkgdesc="Collects information about libraries from its header files and merges it with user written files (typesystem) describing how the library should be exposed as a binding on the target language."
7 url="http://www.pyside.org"
8 arch=('i686' 'x86_64')
9 license=('LGPL')
10 depends=('qt>=4.7' 'openssl' 'libxslt' 'libxml2')
11 makedepends=('cmake' 'automoc4')
12 source=("http://www.pyside.org/files/$pkgname-$pkgver.tar.bz2")
13 md5sums=('7cdf6bdbf161e15b8bc5e98df86f95ee')
15 build(){
16     cd $srcdir/$pkgname-$pkgver
17     mkdir -p build && cd build
18     cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=OFF
19     make
22 package(){
23     cd $srcdir/$pkgname-$pkgver/build
24     make DESTDIR=$pkgdir install