Date: Monday, November 4, 2019 @ 05:44:54
Author: felixonmars
Revision: 523234
archrelease: copy trunk to community-staging-any
Added:
python-pylast/repos/community-staging-any/
python-pylast/repos/community-staging-any/PKGBUILD
(from rev 523233, python-pylast/trunk/PKGBUILD)
----------+
PKGBUILD | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
Copied: python-pylast/repos/community-staging-any/PKGBUILD (from rev 523233,
python-pylast/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-11-04 05:44:54 UTC (rev 523234)
@@ -0,0 +1,34 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Steven Allen <[email protected]>
+# Contributor: Limao Luo <[email protected]>
+# Contributor: Wieland Hoffmann <[email protected]>
+# Contributor: Amr Hassan <[email protected]>
+
+pkgname=python-pylast
+pkgver=3.1.0
+pkgrel=2
+pkgdesc='A Python interface to Last.fm and Libre.fm'
+arch=(any)
+url='https://github.com/pylast/pylast'
+license=(Apache)
+depends=(python-six)
+makedepends=(
+ git
+ python-setuptools
+)
+source=(git+https://github.com/pylast/pylast.git#tag=${pkgver})
+sha256sums=('SKIP')
+
+build() {
+ cd pylast
+
+ python setup.py build
+}
+
+package() {
+ cd pylast
+
+ python setup.py install --root="${pkgdir}" --optimize='1' --skip-build
+}
+
+# vim: ts=2 sw=2 et: