desktop/kdetoys-kteatime/PKGBUILD
2014-04-06 15:39:46 +00:00

49 lines
1.3 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="kteatime"
pkgname="kdetoys-kteatime"
arch=('x86_64')
pkgver=${_kdever}
pkgrel=1
url="http://www.kde.org"
license=('GPL'
'LGPL'
'FDL')
pkgdesc="System tray applet that makes sure your tea doesn't get too strong"
conflicts=("kdetoys-common"
"kdetoys-doc")
groups=("kde"
"kdetoys"
"kde-uninstall")
categories=('accessories')
install=kdetoys.install
options=('docs'
'!header'
'debug'
'log')
makedepends=('pkg-config'
'cmake'
'automoc4'
"kde-workspace>=${_workspace_ver}")
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} \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_{SHARED,MODULE,EXE}_LINKER_FLAGS='-Wl,--no-undefined -Wl,--as-needed'
make
}
package() {
cd ${srcdir}/${_pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}