desktop/kdebindings-smokegen/PKGBUILD
2014-02-01 11:24:18 +00:00

44 lines
1.1 KiB
Bash

# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
# Contributors: Manuel Tortosa <manutortosa@chakra-project.org>
# Include global configuration
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=kdebindings-smokegen
_pkgname=smokegen
pkgver=${_kdever}
pkgrel=1
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')
groups=('kde'
'kdebindings'
'kde-uninstall')
provides=('smokegen')
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} \
-DKDE4_BUILD_TESTS=ON
make
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
make DESTDIR=${pkgdir} install
}