mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
# $Id: PKGBUILD 2091 2009-09-08 14:49:49Z cprimier $
|
|
# Maintainer: Corrado Primier <bardo@aur.archlinux.org>
|
|
# Contributor: sickhate <sickhate@tux-linux.net>
|
|
|
|
pkgname=solfege
|
|
pkgver=3.15.2
|
|
pkgrel=1
|
|
pkgdesc="A free music education software to train rhythm, interval, scale and chord skills"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.solfege.org/"
|
|
license=('GPL')
|
|
depends=('pygtk' 'libgtkhtml')
|
|
makedepends=('ghostscript' 'gnome-doc-utils' 'librsvg' 'libxslt' 'lilypond' 'pkgconfig'
|
|
'swig' 'texinfo' 'txt2man')
|
|
optdepends=('timidity++: midi software output'
|
|
'timidity-freepats: midi sound patches')
|
|
source=(http://downloads.sourceforge.net/sourceforge/solfege/${pkgname}-${pkgver}.tar.gz
|
|
solfege.desktop)
|
|
md5sums=('f7bd9f7cf7ad7ca7fd8bc6432329ab46' '73e7282bd9415769acbf2a492ca202a1')
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --sysconfdir=/etc
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
install -Dm644 ${srcdir}/solfege.desktop ${pkgdir}/usr/share/applications/solfege.desktop
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|