diff options
-rw-r--r-- | .SRCINFO | 20 | ||||
-rw-r--r-- | PKGBUILD | 25 |
2 files changed, 45 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..5313887 --- /dev/null +++ b/.SRCINFO | |||
@@ -0,0 +1,20 @@ | |||
1 | pkgbase = patacrep-git | ||
2 | pkgdesc = Engine for LaTeX songbooks | ||
3 | pkgver = 20150614 | ||
4 | pkgrel = 1 | ||
5 | url = http://www.patacrep.com | ||
6 | arch = any | ||
7 | license = GPL | ||
8 | makedepends = python-setuptools | ||
9 | depends = python | ||
10 | depends = python-ply | ||
11 | depends = python-jinja | ||
12 | depends = python-chardet | ||
13 | depends = python-unidecode | ||
14 | depends = texlive-fontsextra | ||
15 | depends = lilypond | ||
16 | source = patacrep::git://github.com/patacrep/patacrep.git#branch=master | ||
17 | sha256sums = SKIP | ||
18 | |||
19 | pkgname = patacrep-git | ||
20 | |||
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..05415e5 --- /dev/null +++ b/PKGBUILD | |||
@@ -0,0 +1,25 @@ | |||
1 | # Maintainer: Immae <ismael.bouya@normalesup.org> | ||
2 | |||
3 | pkgname=patacrep-git | ||
4 | pkgver=20150614 | ||
5 | pkgrel=1 | ||
6 | pkgdesc="Engine for LaTeX songbooks" | ||
7 | arch=('any') | ||
8 | url="http://www.patacrep.com" | ||
9 | license=('GPL') | ||
10 | depends=('python' 'python-ply' 'python-jinja' 'python-chardet' | ||
11 | 'python-unidecode' 'texlive-fontsextra' 'lilypond') | ||
12 | makedepends=('python-setuptools') | ||
13 | source=("patacrep::git://github.com/patacrep/patacrep.git#branch=master") | ||
14 | sha256sums=(SKIP) | ||
15 | |||
16 | build() { | ||
17 | cd "$srcdir/patacrep" | ||
18 | python setup.py build | ||
19 | } | ||
20 | |||
21 | package(){ | ||
22 | cd "$srcdir/patacrep" | ||
23 | python setup.py install --root="${pkgdir}" | ||
24 | } | ||
25 | |||