summaryrefslogtreecommitdiff
path: root/extra/qoauth
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-20 00:01:23 +0000
committerroot <root@rshg054.dnsready.net>2012-03-20 00:01:23 +0000
commit99136e3a2e9f6f07a7ff08d5721bce354b853c8b (patch)
tree3cd677128a00bc9501f93e27e53ebba72f44cd52 /extra/qoauth
parentde5b6982e42f4a1e8b0537cfbc1b676e2a81f195 (diff)
Tue Mar 20 00:01:23 UTC 2012
Diffstat (limited to 'extra/qoauth')
-rw-r--r--extra/qoauth/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/qoauth/PKGBUILD b/extra/qoauth/PKGBUILD
new file mode 100644
index 000000000..86b4adc21
--- /dev/null
+++ b/extra/qoauth/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 153702 2012-03-18 08:58:10Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# Contributor: Peter Richard Lewis <plewis@aur.archlinux.org>
+
+pkgname=qoauth
+pkgver=1.0.1
+pkgrel=3
+pkgdesc="Support with OAuth-powered network services"
+url='http://github.com/ayoy/qoauth'
+license=('GPL')
+arch=('i686' 'x86_64')
+depends=('qca')
+makedepends=('cmake' 'automoc4')
+source=("http://files.ayoy.net/qoauth/release/current/src/${pkgname}-${pkgver}-src.tar.bz2")
+md5sums=('bcb6d01e6c9a6fb22099c9e0f5889578')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}-src"
+
+ # Install libraries in /usr/lib/
+ sed -i 's|lib64|lib|' src/src.pro
+
+ qmake
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}-src"
+ make INSTALL_ROOT="${pkgdir}" install
+}