diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2015-06-14 20:15:18 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2015-06-14 20:15:18 +0200 |
commit | 77eb3fe4aed3ec1113b198680b69805566a6a4bd (patch) | |
tree | e237d372c267cf602d0e92afdc0cf4f3fe1e453c | |
download | AUR-77eb3fe4aed3ec1113b198680b69805566a6a4bd.tar.gz AUR-77eb3fe4aed3ec1113b198680b69805566a6a4bd.tar.zst AUR-77eb3fe4aed3ec1113b198680b69805566a6a4bd.zip |
Initial commit
-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..f2bdfef --- /dev/null +++ b/.SRCINFO | |||
@@ -0,0 +1,20 @@ | |||
1 | pkgbase = patacrep | ||
2 | pkgdesc = Engine for LaTeX songbooks | ||
3 | pkgver = 4.0.0 | ||
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 = https://github.com/patacrep/patacrep/archive/v4.0.0.tar.gz | ||
17 | sha256sums = 76bcec90e3326ea152d500f35719509268ea5a26996800ea5118c7e924ea726b | ||
18 | |||
19 | pkgname = patacrep | ||
20 | |||
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..270dc98 --- /dev/null +++ b/PKGBUILD | |||
@@ -0,0 +1,25 @@ | |||
1 | # Maintainer: Immae <ismael.bouya@normalesup.org> | ||
2 | |||
3 | pkgname=patacrep | ||
4 | pkgver=4.0.0 | ||
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=("https://github.com/patacrep/${pkgname}/archive/v${pkgver}.tar.gz") | ||
14 | sha256sums=('76bcec90e3326ea152d500f35719509268ea5a26996800ea5118c7e924ea726b') | ||
15 | |||
16 | build() { | ||
17 | cd "$srcdir/${pkgname}-${pkgver}" | ||
18 | python setup.py build | ||
19 | } | ||
20 | |||
21 | package(){ | ||
22 | cd "$srcdir/${pkgname}-${pkgver}" | ||
23 | python setup.py install --root="${pkgdir}" | ||
24 | } | ||
25 | |||