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-plugin-oauth2 | |
parent | c973e7aa43bb6c3bb4e25503eea40ddee63fcefd (diff) |
Tue Nov 6 02:09:19 PST 2012
Diffstat (limited to 'community/signon-plugin-oauth2')
-rw-r--r-- | community/signon-plugin-oauth2/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/signon-plugin-oauth2/PKGBUILD b/community/signon-plugin-oauth2/PKGBUILD new file mode 100644 index 000000000..af96bee39 --- /dev/null +++ b/community/signon-plugin-oauth2/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 79492 2012-11-06 04:11:30Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> + +pkgname=signon-plugin-oauth2 +_pkgname=signon-oauth2 +pkgver=0.11 +pkgrel=1 +pkgdesc="OAuth 2 plugin for signon" +arch=('i686' 'x86_64') +url="http://code.google.com/p/accounts-sso/" +license=('LGPL') +depends=('signon-ui' 'qjson') +makedepends=('signon') +source=(http://accounts-sso.googlecode.com/files/$_pkgname-$pkgver.tar.bz2) +sha1sums=('e67a5997bf9666108776de6a95d98c11815e6790') + +build() { + cd "$srcdir/$_pkgname-$pkgver" + + # Do not install tests and example + echo 'INSTALLS =' >>tests/tests.pro + echo 'INSTALLS =' >>example/example.pro + + qmake PREFIX=/usr LIBDIR=/usr/lib + make +} + +package() { + cd "$srcdir/$_pkgname-$pkgver" + + make INSTALL_ROOT="$pkgdir" install +} |