1 # Maintainer: SpepS <dreamspepser at yahoo dot it>
7 pkgdesc="A loop-based MIDI software sequencer intended to help music composers and performers."
9 url="http://harmonyseq.wordpress.com/"
11 depends=('alsa-lib' 'gtkmm' 'liblo' 'hicolor-icon-theme' 'desktop-file-utils')
14 install="$pkgname.install"
21 msg "Connecting to Bazaar server...."
23 if [[ -d "$_bzrmod" ]]; then
24 cd "$_bzrmod" && bzr --no-plugins pull "$_bzrtrunk" -r "$pkgver"
25 msg "The local files are updated."
27 bzr branch "$_bzrtrunk" "$_bzrmod" -q -r "$pkgver"
30 msg "Bazaar checkout done or server timeout"
31 msg "Starting build..."
33 rm -rf "$srcdir/$_bzrmod-build"
34 cp -r "$srcdir/$_bzrmod" "$srcdir/$_bzrmod-build"
35 cd "$srcdir/$_bzrmod-build"
41 ./configure --prefix=/usr
46 cd "$srcdir/$_bzrmod-build"
48 make DESTDIR="$pkgdir/" install
51 # vim:set ts=2 sw=2 et: