blob: 86b4adc217ef6d7415eefd9d11f1104ca6cb5c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
}
|