# Maintainer: H W Tovetjärn (totte) # Contributors: Manuel Tortosa # Include global configuration source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=kdebindings-qtruby _pkgname=qtruby pkgver=${_kdever} pkgrel=2 pkgdesc="Qt bindings for ruby" url="http://kde.org/" arch=('i686' 'x86_64') license=('GPL' 'LGPL' 'FDL') depends=("kdebindings-smokeqt>=${_kdever}" "ruby") makedepends=('cmake' 'automoc4' "kdebindings-smokegen>=${_kdever}") conflicts=('kdebindings-common') groups=("kde" "kdebindings" "kde-uninstall") provides=('qtruby') options=('docs' '!header' 'debug' 'log') source=("$_mirror/${_pkgname}-$_kdever.tar.xz") sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`) 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 }