Date: Saturday, April 20, 2019 @ 16:24:31
Author: arojas
Revision: 351032
archrelease: copy trunk to testing-x86_64
Added:
artikulate/repos/testing-x86_64/
artikulate/repos/testing-x86_64/PKGBUILD
(from rev 351031, artikulate/trunk/PKGBUILD)
----------+
PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
Copied: artikulate/repos/testing-x86_64/PKGBUILD (from rev 351031,
artikulate/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-20 16:24:31 UTC (rev 351032)
@@ -0,0 +1,39 @@
+# Maintainer: Felix Yan <[email protected]>
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=artikulate
+pkgver=19.04.0
+pkgrel=1
+pkgdesc="Improve your pronunciation by listening to native speakers"
+url="https://edu.kde.org/applications/s/artikulate"
+arch=(x86_64)
+license=(GPL LGPL FDL)
+groups=(kde-applications kdeedu)
+depends=(hicolor-icon-theme kdeclarative knewstuff qt5-quickcontrols
qt5-xmlpatterns)
+makedepends=(extra-cmake-modules kdoctools boost)
+conflicts=(kdeedu-artikulate)
+replaces=(kdeedu-artikulate)
+source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
+sha256sums=('527ebdb2db6eab3e05810c5e56d53611d80bd23508563457b459e4e32a68ef08'
+ 'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid
<[email protected]>
+ F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck
<[email protected]>
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../$pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}