desktop/kdebindings-smokeqt/PKGBUILD
2013-08-31 00:33:10 +00:00

35 lines
964 B
Bash

#
# KDE SC Packages for Chakra, part of chakra-project.org
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kdebindings-smokeqt
_pkgname=smokeqt
pkgver=${_kdever}
pkgrel=1
pkgdesc="Language independent library for Qt bindings"
url="http://kde.org/"
arch=('x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=("kde-runtime>=${_kdever}" 'qimageblitz' 'qscintilla-python2' 'qwt' "kdebindings-smokegen>=${_kdever}")
makedepends=('cmake' 'automoc4')
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha1sums=(`grep ${_pkgname}-$_kdever.tar.xz ../kde-sc.md5 | cut -d" " -f1`)
groups=("kde" "kdebindings" "kde-uninstall")
provides=('smokeqt')
options=('docs' '!header' 'debug' 'log')
build() {
cd ${srcdir}/${_pkgname}-${pkgver}
cmake . -DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix}
make
}
package() {
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}