diff options
author | bill-auger <mr.j.spam.me@gmail.com> | 2020-01-14 06:00:25 -0500 |
---|---|---|
committer | bill-auger <mr.j.spam.me@gmail.com> | 2020-01-14 06:21:19 -0500 |
commit | 1e9bb32996b03fc0c9dcbb4053791975ddf6a735 (patch) | |
tree | 3a005b8ce6f377eaf5757affc746cf65b6541be7 /libre/signon-ui | |
parent | 58a48baee5e183a5f71aa43a01eafcf9319f00bc (diff) | |
download | abslibre-1e9bb32996b03fc0c9dcbb4053791975ddf6a735.tar.gz abslibre-1e9bb32996b03fc0c9dcbb4053791975ddf6a735.tar.bz2 abslibre-1e9bb32996b03fc0c9dcbb4053791975ddf6a735.zip |
[signon-ui]: add newly blacklisted package
this is the last arch package to support webkit
Diffstat (limited to 'libre/signon-ui')
-rw-r--r-- | libre/signon-ui/PKGBUILD | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libre/signon-ui/PKGBUILD b/libre/signon-ui/PKGBUILD new file mode 100644 index 000000000..432394bd5 --- /dev/null +++ b/libre/signon-ui/PKGBUILD @@ -0,0 +1,41 @@ +# Maintainer: Antonio Rojas <arojas@archlinux.org> +# Maintainer: Josip Ponjavic <josipponjavic at gmail dot com> +# Contributor: Balló György <ballogyor+arch at gmail dot com> + + +NOTE: this is the last published arch package to support webkit + + +pkgname=signon-ui +pkgver=0.17+20150611 +pkgrel=2 +_commit=3acb6541 +pkgdesc='UI component responsible for handling the user interactions which can happen during the login process of an online account' +arch=(x86_64) +url="https://launchpad.net/online-accounts-signon-ui" +license=(GPL) +depends=(libaccounts-qt qt5-webkit signond libnotify) +source=("https://gitlab.com/accounts-sso/signon-ui/repository/archive.tar.gz?ref=$_commit") +md5sums=('3a70743aac1bae75f4c3efb133bd8dc1') + +prepare() { + cd signon-ui-* + + # Do not install tests + echo 'INSTALLS =' >>tests/unit/tst_inactivity_timer.pro + echo 'INSTALLS =' >>tests/unit/tst_signon_ui.pro +} + +build() { + cd signon-ui-* + + qmake-qt5 PREFIX=/usr LIBDIR=/usr/lib + make +} + +package() { + cd signon-ui-* + + make INSTALL_ROOT="$pkgdir" install +} + |