summaryrefslogtreecommitdiff
path: root/pcr/maliit-plugins
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-02-04 08:52:03 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-02-04 08:52:03 +0100
commit5949e2c24762c42f652abb91130f837c6acf90a9 (patch)
tree742e0d06d0daf5ef7ee553c494bd6a46c422908e /pcr/maliit-plugins
parent79fa0192cbf22c344181e20b129cb60e88ca8e31 (diff)
pcr/maliit-plugins: updated to 0.99.1
Diffstat (limited to 'pcr/maliit-plugins')
-rw-r--r--pcr/maliit-plugins/PKGBUILD28
1 files changed, 12 insertions, 16 deletions
diff --git a/pcr/maliit-plugins/PKGBUILD b/pcr/maliit-plugins/PKGBUILD
index 3d29bd029..915f737eb 100644
--- a/pcr/maliit-plugins/PKGBUILD
+++ b/pcr/maliit-plugins/PKGBUILD
@@ -1,32 +1,28 @@
# Contributor (Arch): Jon Nordby <jononor@gmail.com>
# Maintainer (Arch): Jon Nordby <jononor@gmail.com>
+# parabola changes and rationale:
+# - upstream pkgbuild is gone, but we keep maintaining this.
+
pkgname=maliit-plugins
-pkgver=0.99.0
+pkgver=0.99.1
pkgrel=1
pkgdesc="Maliit Input Methods - Plugins"
-arch=('x86_64' 'i686')
+arch=('x86_64' 'i686' 'armv7h')
url="http://maliit.org"
license=('LGPL')
depends=('qt5-base' 'maliit-framework')
-source=(http://maliit.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2
- config.patch)
-md5sums=('29f07d937803a61e74301e4616d55dbb'
- 'f43d45c9917924750edf36000492bd73')
+makedepends=('doxygen')
+source=($pkgname-$pkgver.tar.gz::https://github.com/maliit/plugins/archive/$pkgver.tar.gz)
+md5sums=('8d10b92bfc3068bd82c82c0756e0f2f2')
build() {
- cd "$srcdir/${pkgname}-${pkgver}"
-
- # fix issue on building
- patch -Np1 -i "$srcdir/config.patch"
-
- # BUILD
- qmake -r . CONFIG+=notests
+ cd "$srcdir/plugins-${pkgver}"
+ QMAKEPATH=/usr/share/qt/ qmake -r . CONFIG+=notests
make
}
package() {
- cd "$srcdir/${pkgname}-${pkgver}"
-
+ cd "$srcdir/plugins-${pkgver}"
make install INSTALL_ROOT="$pkgdir/"
-}
+}