desktop/kdetoys-kteatime/PKGBUILD
2015-04-06 17:40:50 +00:00

36 lines
1.0 KiB
Bash

# Include global configuration
source ../kdeapps.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')
depends=("kde-runtime")
makedepends=('pkg-config' 'cmake' 'automoc4')
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
}