]> git.immae.eu Git - perso/Immae/Config/AUR.git/commitdiff
Initial commit
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 14 Jun 2015 18:10:48 +0000 (20:10 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sun, 14 Jun 2015 18:10:48 +0000 (20:10 +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..5313887
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,20 @@
+pkgbase = patacrep-git
+       pkgdesc = Engine for LaTeX songbooks
+       pkgver = 20150614
+       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 = patacrep::git://github.com/patacrep/patacrep.git#branch=master
+       sha256sums = SKIP
+
+pkgname = patacrep-git
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644 (file)
index 0000000..05415e5
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Immae <ismael.bouya@normalesup.org>
+
+pkgname=patacrep-git
+pkgver=20150614
+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=("patacrep::git://github.com/patacrep/patacrep.git#branch=master")
+sha256sums=(SKIP)
+
+build() {
+  cd "$srcdir/patacrep"
+  python setup.py build
+}
+
+package(){
+  cd "$srcdir/patacrep"
+  python setup.py install --root="${pkgdir}"
+}
+