summaryrefslogtreecommitdiff
path: root/pcr/stormlib/PKGBUILD
blob: 26203566ec7004abf6372abe54a22bcb9a9115dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Andreas Grapentin <andreas@grapentin.org>
# Maintainer (AUR): Jerome Leclanche <jerome@leclan.ch>

_pkgname=StormLib
pkgname=${_pkgname,,}

pkgver=9.22
pkgrel=1.parabola1
arch=(i686 x86_64 armv7h)

pkgdesc="A C/C++ API to read and write MPQ files with support for merged archives, patch MPQs and more."
url="http://www.zezula.net/en/mpq/stormlib.html"
license=(MIT)

depends=(bzip2 zlib)
makedepends=(cmake)

source=("$pkgname-$pkgver.tar.gz::https://github.com/ladislav-zezula/$_pkgname/archive/v$pkgver.tar.gz")
sha256sums=('7ed583aae5549ba1abc68a8fc9a642b28323cdf835941bd9b2b549a7b623e53d')


build() {
	mkdir -p build
	cd build
	cmake "$srcdir/$_pkgname-$pkgver" \
		-DCMAKE_BUILD_TYPE=Release \
		-DCMAKE_INSTALL_PREFIX=/usr
	make
}

package() {
	cd build
	make DESTDIR="$pkgdir" install
}