updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / midiosc / PKGBUILD
blob6140b2f37e0cba53bb3501e6bdfca7b6e9e635d4
1 # Maintainer:  Bernardo Barros <bernardobarros@gmail.com>
3 pkgname=midiosc  
4 pkgver=20110131
5 pkgrel=1 
6 pkgdesc="MidiOSC is a small program to bridge the worlds of MIDI and OSC by providing bidirectional conversion of MIDI to OSC."
7 url="https://github.com/jstutters/MidiOSC"
8 arch=('i686' 'x86_64')
9 license=('GPL')
10 depends=('liblo')
11 makedepends=('git')
13 _gitroot="git://github.com/jstutters/MidiOSC.git"
14 _gitname="midiosc"
16 build() {
18   cd "$srcdir"
19   msg "Connecting to GIT server...."
21   if [ -d $_gitname ] ; then
22     cd $_gitname && git pull origin
23     msg "The local files are updated."
24   else
25     git clone $_gitroot $_gitname
26   fi
28   msg "GIT checkout done or server timeout"
29   msg "Starting make..."
31   rm -rf "$srcdir/$_gitname-build"
32   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
33   cd "$srcdir/$_gitname-build"
35   scons
38 package() {
40   mkdir -p "$pkgdir/usr/bin"
41   install -m 755 $srcdir/$_gitname-build/midiosc  $pkgdir/usr/bin 
42