diff options
author | root <root@rshg054.dnsready.net> | 2012-11-06 02:13:31 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-11-06 02:13:31 -0800 |
commit | 85e0e667660650d70269432a90401d4288776d9d (patch) | |
tree | 7d6e665bf13e57be14c60b14512dd322c97874e8 /community/signon-ui | |
parent | c973e7aa43bb6c3bb4e25503eea40ddee63fcefd (diff) |
Tue Nov 6 02:09:19 PST 2012
Diffstat (limited to 'community/signon-ui')
-rw-r--r-- | community/signon-ui/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/community/signon-ui/PKGBUILD b/community/signon-ui/PKGBUILD new file mode 100644 index 000000000..7aad2158f --- /dev/null +++ b/community/signon-ui/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: PKGBUILD 79493 2012-11-06 04:11:33Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=signon-ui +pkgver=0.11 +pkgrel=1 +pkgdesc="UI component that responsible for handling the user interactions which can happen during the login process of an online account" +arch=('i686' 'x86_64') +url="https://launchpad.net/online-accounts-signon-ui" +license=('GPL') +depends=('libaccounts-qt' 'qtwebkit' 'libproxy') +makedepends=('signon' 'libnotify') +source=(https://launchpad.net/online-accounts-signon-ui/12.10/$pkgver/+download/$pkgname-$pkgver.tar.bz2) +md5sums=('b0359c61523f7b0df241bd3c21dbb2b2') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # Do not install tests + echo 'INSTALLS =' >>tests/unit/unit.pro + + qmake PREFIX=/usr LIBDIR=/usr/lib + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make INSTALL_ROOT="$pkgdir" install +} |