View difference between Paste ID: Z5e1Qi7H and
SHOW: | | - or go back to the newest paste.
1-
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: