From: Ismaƫl Bouya Date: Sun, 14 Jun 2015 18:15:18 +0000 (+0200) Subject: Initial commit X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FAUR.git;a=commitdiff_plain;h=77eb3fe4aed3ec1113b198680b69805566a6a4bd Initial commit --- 77eb3fe4aed3ec1113b198680b69805566a6a4bd diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 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 index 0000000..270dc98 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,25 @@ +# Maintainer: Immae + +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}" +} +