desktop/kdeedu-ktouch/PKGBUILD

36 lines
1022 B
Bash
Raw Normal View History

2013-12-18 02:36:04 +08:00
# Include global configuration
source ../kdeapps.conf
2011-07-23 02:02:15 +08:00
pkgname=kdeedu-ktouch
_pkgname=ktouch
pkgver=${_kdever}
2014-02-01 19:24:18 +08:00
pkgrel=1
pkgdesc="Touch-typing tutor"
2011-07-23 02:02:15 +08:00
url="http://kde.org/applications/education/ktouch/"
screenshot='https://www.kde.org/images/screenshots/ktouch.png'
2012-11-19 00:52:05 +08:00
arch=('x86_64')
license=('GPL' 'LGPL' 'FDL')
depends=("kde-runtime" "kqtquickcharts")
2015-12-05 07:26:22 +08:00
makedepends=('cmake' 'automoc4' 'docbook-xsl')
groups=("kde" "kdeedu" "kde-uninstall")
2012-03-06 07:57:58 +08:00
categories=('education')
options=('docs' 'debug')
2011-07-23 02:02:15 +08:00
install=${pkgname}.install
2012-03-30 09:29:52 +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`)
2011-07-23 02:02:15 +08:00
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
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
}