Date: Sunday, March 18, 2012 @ 04:57:07 Author: andrea Revision: 153701
Fix repo hierarchy, move qoauth from [community] Added: qoauth/ qoauth/repos/ qoauth/trunk/ qoauth/trunk/PKGBUILD ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Added: qoauth/trunk/PKGBUILD =================================================================== --- qoauth/trunk/PKGBUILD (rev 0) +++ qoauth/trunk/PKGBUILD 2012-03-18 08:57:07 UTC (rev 153701) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> +# Contributor: Peter Richard Lewis <[email protected]> + +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 +} Property changes on: qoauth/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id
