From 77eb3fe4aed3ec1113b198680b69805566a6a4bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Sun, 14 Jun 2015 20:15:18 +0200 Subject: [PATCH] Initial commit --- .SRCINFO | 20 ++++++++++++++++++++ PKGBUILD | 25 +++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD 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}" +} + -- 2.41.0