forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
24 lines (23 loc) · 855 Bytes
/
PKGBUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# $Id$
# Maintainer: Damir Perisa <[email protected]>
pkgname=abcm2ps-devel
orgname=abcm2ps
pkgver=5.5.2
pkgrel=1
pkgdesc="abcm2ps is a command line program which converts ABC to music sheet in PostScript format. It is an extension of abc2ps which may handle many voices per staff. (DEVELOPEMENT version)"
arch=('i686' 'x86_64')
url="http://moinejf.free.fr/"
license=('GPL')
depends=('glibc')
provides=('abcm2ps')
conflicts=('abcm2ps')
# using temporary location for the abcm2ps-5.5.2.tar.gz sources
#source=("http://moinejf.free.fr/$orgname-$pkgver.tar.gz")
source=("http://ftp.tr.freebsd.org/pub/FreeBSD/distfiles/abcm2ps-5.5.2.tar.gz")
md5sums=('961cb49ee61880c20e2b96ba019d36ea')
build() {
cd $startdir/src/$orgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr docdir=$startdir/pkg/usr/doc install
}