desktop/apiextractor/PKGBUILD

32 lines
914 B
Bash
Raw Normal View History

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=apiextractor
2011-10-16 02:22:42 +08:00
pkgver=0.10.7
pkgrel=1
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."
url="http://www.pyside.org"
arch=('i686' 'x86_64')
license=('LGPL')
depends=('qt>=4.7' 'openssl' 'libxslt' 'libxml2')
makedepends=('cmake' 'automoc4')
source=("http://www.pyside.org/files/$pkgname-$pkgver.tar.bz2")
2011-10-16 02:22:42 +08:00
md5sums=('539be815e7fb09064fefcdb21ad44965')
build(){
cd $srcdir/$pkgname-$pkgver
mkdir -p build && cd build
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
..
make
}
package(){
cd $srcdir/$pkgname-$pkgver/build
make DESTDIR=$pkgdir install
}