summaryrefslogtreecommitdiff
path: root/pcr/python-ly
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-11-20 11:26:15 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-11-20 11:26:15 -0300
commit28db6b4ec97d7057339fca2581f97770a63ad020 (patch)
tree6688d61d18ca6358698777d76a7e68a06f390f18 /pcr/python-ly
parent8141caaa9059473c19278f818eb9affb3cc957ef (diff)
python-ly: add new package to [pcr]
Diffstat (limited to 'pcr/python-ly')
-rw-r--r--pcr/python-ly/PKGBUILD20
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/python-ly/PKGBUILD b/pcr/python-ly/PKGBUILD
new file mode 100644
index 000000000..b5bed66a5
--- /dev/null
+++ b/pcr/python-ly/PKGBUILD
@@ -0,0 +1,20 @@
+# Maintainer (Arch): Raphaël Doursenaud <rdoursenaud@free.fr>
+
+pkgname=python-ly
+pkgver=0.9.2
+pkgrel=1
+pkgdesc="Python modules to parse, manipulate or create documents in LilyPond format."
+arch=('any')
+url="https://github.com/wbsoft/python-ly"
+license=('GPL')
+depends=('python')
+options=(!emptydirs)
+source=("https://github.com/wbsoft/${pkgname}/archive/v${pkgver}.tar.gz")
+sha256sums=('71f996a12b306a816b40bc2d40098cf5b9a1443ef379d8c2e01560c4c1c52b5c')
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et: