Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2010
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. # Contributor: Abdallah Aly <l3thal8//gmail.com>
  2.  
  3. pkgname=wxwidgets
  4. pkgver=2.9.0
  5. pkgrel=1
  6. pkgdesc=" wxWidgets is a C++ library that lets developers create applications for Windows, OS X, Linux and UNIX"
  7. arch=('i686' 'x86_64')
  8. url="http://www.wxwidgets.org/"
  9. license=('wxWindows')
  10. depends=('openmotif' 'gtk2')
  11. #makedepends=()
  12. #provides=()
  13. conflicts=('wxgtk-2.9')
  14. source=(http://voxel.dl.sourceforge.net/project/wxwindows/wxAll/$pkgver/wxWidgets-$pkgver.tar.gz)
  15. md5sums=('5b3cdf95c5c90322c964f43893b9d0bb')
  16.  
  17. build() {
  18. cd "$srcdir/wxWidgets-$pkgver"
  19.  
  20. ./configure --prefix=/usr
  21. make || return 1
  22. make DESTDIR="$pkgdir/" install
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement