Advertisement
quark_zju

abcmidi PKGBUILD

Dec 24th, 2011
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.75 KB | None | 0 0
  1. # Contributor: Phillip Fynan <pfynan@gmail.com>
  2. # Maintainer: Eric Forgeot < http://www.esclinux.tk >
  3.  
  4. pkgname=abcmidi
  5. pkgver=20111219
  6. pkgrel=1
  7. pkgdesc="A set of tools for converting ABC files to MIDI files and vice versa, as well as other small utilities"
  8. url="http://abc.sourceforge.net/abcMIDI/"
  9. license="GPL"
  10. depends=('glibc')
  11. makedepends=('unzip')
  12. source=('http://ifdo.pugmarks.com/~seymour/runabc/abcMIDI-2011-12-19.zip')
  13. arch=(i686 x86_64 ppc)
  14.  
  15. md5sums=('f0fc5e4fe487422dd7b0c583fc52eccb')
  16.  
  17.  
  18. build() {
  19.     cd $srcdir/abcmidi
  20.    
  21.     make 'binaries=abc2midi midi2abc abc2abc mftext midicopy abcmatch' || return 1
  22.     mkdir -p $pkgdir/usr/bin
  23.     make prefix=$pkgdir/usr 'binaries=abc2midi midi2abc abc2abc mftext midicopy abcmatch' install
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement