desktop/kdebindings-smokegen/PKGBUILD
2014-01-12 12:19:36 +00:00

45 lines
1.2 KiB
Bash

# Maintainer: Manuel Tortosa <manutortosa@chakra-project@org>
# Contributors: H W Tovetjarn (totte) <totte@tott.es>
# Include global configuration
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kdebindings-smokegen
_pkgname=smokegen
pkgver=${_kdever}
pkgrel=3
pkgdesc='A general purpose C++ parser with a plugin infrastructure'
url='https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen'
arch=('x86_64')
license=('GPL'
'LGPL'
'FDL')
depends=("kde-runtime>=${_kdever}")
makedepends=('cmake'
'automoc4')
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
groups=('kde'
'kdebindings'
'kde-uninstall')
provides=('smokegen')
options=('docs'
'!header'
'debug'
'log')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DKDE4_BUILD_TESTS=OFF
make
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
}
sha256sums=('f07ce559aa8fda4d2ed48b40e21c34c2b03e55b9ec4e4ea39f2e33490e8b4bbc')