summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--abs/extra/python-oauth/PKGBUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/abs/extra/python-oauth/PKGBUILD b/abs/extra/python-oauth/PKGBUILD
index ca5493a..523867f 100644
--- a/abs/extra/python-oauth/PKGBUILD
+++ b/abs/extra/python-oauth/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Snowknight (hopkinsth@gmail.com)
pkgname=python-oauth
pkgver=1.0.1
-pkgrel=3
+pkgrel=4
pkgdesc="An open protocol to allow API authentication in a simple and standard method from desktop and web applications."
arch=('any')
url="http://code.google.com/p/oauth/"
@@ -16,7 +16,11 @@ build() {
cd ${srcdir}/oauth-${pkgver}
python2 setup.py build || return 1
+}
+package() {
+ cd ${srcdir}/oauth-${pkgver}
python2 setup.py install --root=${pkgdir} || return 1
install -Dm644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}
+