mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-11 02:24:37 +08:00
35 lines
997 B
Bash
35 lines
997 B
Bash
|
#
|
||
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=apiextractor
|
||
|
pkgver=0.10.2
|
||
|
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")
|
||
|
md5sums=('946e8988e5f4c4bd62e774407fa80fee')
|
||
|
|
||
|
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
|
||
|
}
|