Don't like ads? PRO users don't see any ads ;-)
Guest

frecobaldi PKGBUILD

By: a guest on Feb 17th, 2011  |  syntax: Bash  |  size: 0.80 KB  |  hits: 200  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # Contributor: David Virgilio <drvirgilio@gmail.com>
  2. # Contributor: David Zaragoza <david@zaragoza.com.ve>
  3.  
  4. pkgname=frescobaldi
  5. pkgver=1.2.0
  6. pkgrel=2
  7. pkgdesc="A LilyPond sheet music editor for KDE4. It aims to be powerful, yet lightweight and easy to use."
  8. arch=('i686' 'x86_64')
  9. url="http://www.frescobaldi.org/"
  10. license="GPL"
  11. depends=('kdebase-kwrite' 'lilypond' 'python2>=2.4.0' 'python2-qt' 'kdebindings-python')
  12. optdepends=('rumor')
  13. install=
  14. makedepends=('automoc4' 'cmake' 'docbook-xsl')
  15. source=(http://lilykde.googlecode.com/files/$pkgname-$pkgver.tar.gz)
  16. md5sums=('e5dbc9425e3aae9890d54649b3d60166')
  17.  
  18. build() {
  19.   cd $startdir/src/$pkgname-$pkgver
  20.   cmake . -DCMAKE_INSTALL_PREFIX=$(kde4-config --exec-prefix) || return 1
  21.   make || return 1
  22.   make install DESTDIR=$pkgdir || return 1
  23. }