Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2010
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.76 KB | None | 0 0
  1. # Contributor: zarra <zarraxx@gmail.com>
  2. pkgname=stormlib
  3. pkgver=7.10
  4. pkgrel=1
  5. pkgdesc="The StormLib library is a pack of modules, written in C++, which are able to read and also to write files from/to the MPQ archives. The original version was written for the Win32 platform, but Marko Friedemann has ported it also to Linux."
  6. arch=('i686' 'x86_64')
  7. url="http://www.zezula.net/en/mpq/stormlib.html"
  8. license=('custom')
  9. depends=('bzip2')
  10. options=(!strip)
  11. source=('http://www.zezula.net/download/stormlib.zip')
  12. md5sums=('25785e60fa6875140b63461bd75bfe11')
  13.  
  14. build() {
  15.   cd "$srcdir"/StormLib
  16.   install -d "$pkgdir"/usr/lib
  17.   sed -e "s|/usr/local|$pkgdir/usr|g" makefile.linux > Makefile
  18.   make || return 1
  19.   make install || return 1
  20. }
  21. # vim:set ts=2 sw=2 et:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement