desktop/kdebindings-qyoto/PKGBUILD

36 lines
1.0 KiB
Bash
Raw Normal View History

# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
2011-07-23 02:02:15 +08:00
2013-12-18 02:36:04 +08:00
# Include global configuration
2011-07-23 02:02:15 +08:00
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kdebindings-qyoto
_pkgname=qyoto
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
2011-07-23 02:02:15 +08:00
pkgdesc=".NET/Mono bindings for the Qt libraries"
url="http://kde.org/"
2012-11-18 05:19:07 +08:00
arch=('x86_64')
2011-07-23 02:02:15 +08:00
license=('GPL' 'LGPL' 'FDL')
depends=("kdebindings-smokeqt>=${_kdever}" "mono")
makedepends=('cmake' 'automoc4' "kdebindings-smokegen>=${_kdever}")
conflicts=('kdebindings-common')
groups=("kde" "kdebindings" "kde-uninstall")
provides=('qyoto')
options=('docs' '!header' 'debug' 'log')
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
2011-07-23 02:02:15 +08:00
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix}
make
2011-07-23 02:02:15 +08:00
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
2011-07-23 02:02:15 +08:00
}