desktop/artikulate/PKGBUILD

35 lines
859 B
Bash
Raw Normal View History

2015-12-05 07:26:22 +08:00
# Include global configuration
source ../kdeapps.conf
pkgname=artikulate
pkgver=${_kdever}
pkgrel=1
pkgdesc="Improve your pronunciation by listening to native speakers"
url="https://projects.kde.org/projects/kde/kdeedu/artikulate"
arch=(x86_64)
license=(GPL LGPL FDL)
groups=(kde kde-applications kdeedu kde-uninstall)
2016-08-04 19:44:34 +08:00
depends=(hicolor-icon-theme kdeclarative knewstuff qt5-gstreamer qt5-multimedia)
2015-12-05 07:26:22 +08:00
makedepends=(extra-cmake-modules kdoctools boost)
conflicts=(kdeedu-artikulate)
replaces=(kdeedu-artikulate)
install=$pkgname.install
options=('docs' 'debug')
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
prepare() {
mkdir -p build
}
build() {
cd build
cmake_kf5 ../${pkgname}-${pkgver}
make
}
package() {
cd build
make DESTDIR=${pkgdir} install
}