desktop/kdebindings-smokegen/PKGBUILD

45 lines
1.2 KiB
Bash
Raw Normal View History

# Maintainer: Manuel Tortosa <manutortosa@chakra-project@org>
# Contributors: H W Tovetjarn (totte) <totte@tott.es>
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-smokegen
_pkgname=smokegen
pkgver=${_kdever}
2014-01-11 20:59:04 +08:00
pkgrel=3
pkgdesc='A general purpose C++ parser with a plugin infrastructure'
url='https://projects.kde.org/projects/kde/kdebindings/smoke/smokegen'
2012-11-18 03:00:02 +08:00
arch=('x86_64')
license=('GPL'
'LGPL'
'FDL')
2011-07-23 02:02:15 +08:00
depends=("kde-runtime>=${_kdever}")
makedepends=('cmake'
'automoc4')
2012-03-30 09:11:15 +08:00
source=("$_mirror/${_pkgname}-$_kdever.tar.xz")
2014-01-11 20:59:04 +08:00
sha256sums=(`grep ${_pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
groups=('kde'
'kdebindings'
'kde-uninstall')
2011-07-23 02:02:15 +08:00
provides=('smokegen')
options=('docs'
'!header'
'debug'
'log')
2011-07-23 02:02:15 +08:00
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
cmake . \
-DCMAKE_BUILD_TYPE=${_build_type} \
-DCMAKE_INSTALL_PREFIX=${_installprefix} \
-DKDE4_BUILD_TESTS=OFF
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
}
2014-01-12 20:19:36 +08:00
sha256sums=('f07ce559aa8fda4d2ed48b40e21c34c2b03e55b9ec4e4ea39f2e33490e8b4bbc')