diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-20 20:57:23 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-06-20 20:57:23 -0300 |
commit | 8260455b9ad0a1c2f806c401f9b6cd8f34b1ca92 (patch) | |
tree | 8fbd16dac371256b6720e67b8499c20a9cea6f58 /pcr | |
parent | 6fd699573ff46c2b11591799aa55788ea214cd2a (diff) |
maliit: put more improvemments
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/maliit-framework/PKGBUILD | 2 | ||||
-rw-r--r-- | pcr/maliit-plugins/PKGBUILD | 13 |
2 files changed, 10 insertions, 5 deletions
diff --git a/pcr/maliit-framework/PKGBUILD b/pcr/maliit-framework/PKGBUILD index 7b073397a..545c34a0c 100644 --- a/pcr/maliit-framework/PKGBUILD +++ b/pcr/maliit-framework/PKGBUILD @@ -5,7 +5,7 @@ pkgname=maliit-framework pkgver=0.99.0 -pkgrel=5 +pkgrel=6 pkgdesc="Maliit Input Methods - Framework" arch=('x86_64' 'i686') url="http://maliit.org" diff --git a/pcr/maliit-plugins/PKGBUILD b/pcr/maliit-plugins/PKGBUILD index e30adba24..cdab07003 100644 --- a/pcr/maliit-plugins/PKGBUILD +++ b/pcr/maliit-plugins/PKGBUILD @@ -8,15 +8,20 @@ pkgdesc="Maliit Input Methods - Plugins" arch=('x86_64' 'i686') url="http://maliit.org" license=('LGPL') -depends=('qt5-base' 'qt4' 'maliit-framework') -source=(http://maliit.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('29f07d937803a61e74301e4616d55dbb') +depends=('qt5-base' 'maliit-framework') +source=(http://maliit.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2 + config.patch) +md5sums=('29f07d937803a61e74301e4616d55dbb' + 'f43d45c9917924750edf36000492bd73') build() { cd "$srcdir/${pkgname}-${pkgver}" + # fix issue on building + patch -Np1 -i "$srcdir/config.patch" + # BUILD - qmake-qt4 -r . CONFIG+=notests + qmake -r . CONFIG+=notests make } |