[arch-commits] Commit in accounts-qml-module/trunk (PKGBUILD)

Antonio Rojas arojas at archlinux.org
Sun Aug 30 15:34:47 UTC 2020


    Date: Sunday, August 30, 2020 @ 15:34:46
  Author: arojas
Revision: 395000

Fix build (FS#67770), remove test binary

Modified:
  accounts-qml-module/trunk/PKGBUILD

----------+
 PKGBUILD |   16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-30 15:17:36 UTC (rev 394999)
+++ PKGBUILD	2020-08-30 15:34:46 UTC (rev 395000)
@@ -2,7 +2,7 @@
 
 pkgname=accounts-qml-module
 pkgver=0.7
-pkgrel=2
+pkgrel=3
 pkgdesc="Expose the Online Accounts API to QML applications"
 url="https://gitlab.com/accounts-sso/accounts-qml-module"
 arch=(x86_64)
@@ -9,17 +9,21 @@
 license=(LGPL)
 depends=(signond libaccounts-qt qt5-declarative)
 makedepends=(qt5-tools)
-source=("https://gitlab.com/accounts-sso/$pkgname/repository/archive.tar.gz?ref=VERSION_$pkgver")
-md5sums=('dfbfdd00f455ba9b4a110971118bf289')
+source=("$pkgname-$pkgver.tar.gz::https://gitlab.com/accounts-sso/$pkgname/repository/archive.tar.gz?ref=VERSION_$pkgver"
+         accounts-qml-module-qmltypes.patch::"https://gitlab.com/accounts-sso/accounts-qml-module/-/commit/678c493a.patch")
+sha256sums=('bea8a35c0d250196247b57ca6152f91f9ea3fe0da0623d87ed3698e3cc459bf4'
+            'ae1142ba51f261a9e5c128fcb6c7518c642fc17ce0d908e31e8af14440db9faa')
 
 prepare() {
   mkdir -p build
-  sed -e 's/-Werror//' -i $pkgname-*/common-project-config.pri
+  mv $pkgname-VERSION* $pkgname
+  sed -e 's/-Werror//' -i $pkgname/common-project-config.pri
+  patch -d $pkgname -p1 -i ../accounts-qml-module-qmltypes.patch
 }
 
 build() {
   cd build 
-  qmake-qt5 ../$pkgname-*/$pkgname.pro PREFIX=/usr
+  qmake-qt5 ../$pkgname/$pkgname.pro PREFIX=/usr
   make
 }
 
@@ -26,5 +30,5 @@
 package() {
   cd build
   make INSTALL_ROOT="$pkgdir" install_subtargets # skip docs
+  rm -r "$pkgdir"/usr/bin # Remove test binary
 }
-



More information about the arch-commits mailing list