Guest User

sirjoshimus

a guest
May 28th, 2009
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. # Maintainer:
  2. # Contributor: Ali H. Caliskan <[email protected]>
  3. # Contributor: Darwin Bautista <[email protected]>
  4.  
  5. pkgname=openlibraries
  6. pkgver=0.4.0
  7. pkgrel=3
  8. pkgdesc="Powerful and cross-platform set of libraries for easily creating, testing, and deploying rich media applications"
  9. arch=('i686' 'x86_64')
  10. url="http://www.openlibraries.org/"
  11. license=('GPL')
  12. depends=('boost' 'glew' 'freeglut' 'libgl' 'mlt++' 'openal' 'openexr' 'sqlite3')
  13. source=(http://kent.dl.sourceforge.net/sourceforge/openlibraries/openlibraries-0.4.0.tar.gz)
  14. md5sums=('e9e8007e69fae777e3113efcb66bf378')
  15. options=(!libtool)
  16. CC=gcc-3.3
  17. CX=gcc-3.3
  18.  
  19. build() {
  20. cd $srcdir/${pkgname}-${pkgver}/
  21.  
  22. # Make FFmpeg optional
  23.  
  24. ./configure --prefix=/usr --disable-debug --disable-cg --disable-gelato \
  25. --disable-quicktime --enable-sqlite3 --enable-openal --enable-gpl \
  26. --with-x --with-boostthreadruntime=mt --with-pythonversion=2.5 --disable-libavformat
  27.  
  28. make || return 1
  29. make DESTDIR=${startdir}/pkg install || return 1
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment