]> git.immae.eu Git - perso/Immae/Config/AUR.git/commitdiff
Initial commit
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 14 Jun 2015 18:15:18 +0000 (20:15 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 14 Jun 2015 18:15:18 +0000 (20:15 +0200)
.SRCINFO [new file with mode: 0644]
PKGBUILD [new file with mode: 0644]

diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644 (file)
index 0000000..f2bdfef
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,20 @@
+pkgbase = patacrep
+       pkgdesc = Engine for LaTeX songbooks
+       pkgver = 4.0.0
+       pkgrel = 1
+       url = http://www.patacrep.com
+       arch = any
+       license = GPL
+       makedepends = python-setuptools
+       depends = python
+       depends = python-ply
+       depends = python-jinja
+       depends = python-chardet
+       depends = python-unidecode
+       depends = texlive-fontsextra
+       depends = lilypond
+       source = https://github.com/patacrep/patacrep/archive/v4.0.0.tar.gz
+       sha256sums = 76bcec90e3326ea152d500f35719509268ea5a26996800ea5118c7e924ea726b
+
+pkgname = patacrep
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644 (file)
index 0000000..270dc98
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Immae <ismael.bouya@normalesup.org>
+
+pkgname=patacrep
+pkgver=4.0.0
+pkgrel=1
+pkgdesc="Engine for LaTeX songbooks"
+arch=('any')
+url="http://www.patacrep.com"
+license=('GPL')
+depends=('python' 'python-ply' 'python-jinja' 'python-chardet'
+         'python-unidecode' 'texlive-fontsextra' 'lilypond')
+makedepends=('python-setuptools')
+source=("https://github.com/patacrep/${pkgname}/archive/v${pkgver}.tar.gz")
+sha256sums=('76bcec90e3326ea152d500f35719509268ea5a26996800ea5118c7e924ea726b')
+
+build() {
+  cd "$srcdir/${pkgname}-${pkgver}"
+  python setup.py build
+}
+
+package(){
+  cd "$srcdir/${pkgname}-${pkgver}"
+  python setup.py install --root="${pkgdir}"
+}
+