mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-04 00:37:15 +08:00
33 lines
809 B
Bash
33 lines
809 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=shiboken
|
|
_pkgname=libshiboken
|
|
pkgver=1.0.5
|
|
pkgrel=1
|
|
pkgdesc="Support library for Python bindings."
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
url="http://www.pyside.org"
|
|
depends=('python' 'qt>=4.7' 'openssl')
|
|
makedepends=('cmake' 'automoc4' 'generatorrunner>=0.6.8')
|
|
source=("http://www.pyside.org/files/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('e9249ab88a5ba67183a165d11143c894')
|
|
|
|
build(){
|
|
cd $srcdir/$pkgname-$pkgver
|
|
mkdir -p build && cd build
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
..
|
|
make $_pkgname
|
|
}
|
|
|
|
package(){
|
|
cd $srcdir/$pkgname-$pkgver/build/$_pkgname
|
|
make DESTDIR=$pkgdir install
|
|
}
|