summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD15
2 files changed, 11 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index ae2226c0c1a4..4feb5db26ee8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = abcm2ps
pkgdesc = Convert ABC music notation files to PostScript from the commandline
- pkgver = 7.8.14
+ pkgver = 8.13.22
pkgrel = 1
url = http://moinejf.free.fr/
arch = i686
@@ -10,8 +10,8 @@ pkgbase = abcm2ps
depends = pango
depends = freetype2
conflicts = abcm2ps-devel
- source = http://moinejf.free.fr/abcm2ps-7.8.14.tar.gz
- sha256sums = 31c55865a914d56c12e2b7cbeaf5e4a09b47bbe79f1c7b5cd1576a16f3753d07
+ source = abcm2ps-8.13.22.tar.gz::https://github.com/leesavide/abcm2ps/archive/v8.13.22.tar.gz
+ sha256sums = 9a1379fd93fcf2d87d580c85b43ca1930a4bc412c291be551af1035d08f26c36
pkgname = abcm2ps
diff --git a/PKGBUILD b/PKGBUILD
index 20de942008ba..c9df88192dd8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,10 +1,11 @@
-# Maintainer: Simon Thorpe <simon@hivetechnology.com.au>
+# Contributor: Lex Black <autumn-wind@web.de>
+# Contributor: Simon Thorpe <simon@hivetechnology.com.au>
# Contributor: kess <joe@macmahon.eu>
# Contributor: damir <damir@archlinux.org>
# Contributor: Luis Pablo Gasparotto <lpgasparotto(at)gmail(dot)com>
pkgname=abcm2ps
-pkgver=7.8.14
+pkgver=8.13.22
pkgrel=1
pkgdesc="Convert ABC music notation files to PostScript from the commandline"
arch=('i686' 'x86_64')
@@ -13,16 +14,16 @@ license=('GPL')
depends=('pango' 'freetype2')
conflicts=('abcm2ps-devel')
groups=(abc)
-source=(http://moinejf.free.fr/$pkgname-$pkgver.tar.gz)
-sha256sums=('31c55865a914d56c12e2b7cbeaf5e4a09b47bbe79f1c7b5cd1576a16f3753d07')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/leesavide/${pkgname}/archive/v${pkgver}.tar.gz)
+sha256sums=('9a1379fd93fcf2d87d580c85b43ca1930a4bc412c291be551af1035d08f26c36')
build() {
- cd $srcdir/$pkgname-$pkgver
+ cd "${pkgname}-${pkgver}"
./configure --prefix=/usr
- make || return 1
+ make
}
package() {
- cd $srcdir/$pkgname-$pkgver
+ cd "${pkgname}-${pkgver}"
make prefix="$pkgdir/usr" docdir=$pkgdir/usr/share/doc install
} \ No newline at end of file