blob: 70887d7521bed027e5fff34861549f5a55d59ca6 (
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
|
# Maintainer: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
pkgname=liblcf
pkgver=0.6.2
pkgrel=1
pkgdesc="Library to handle RPG Maker 2000/2003 and EasyRPG projects"
arch=('i686' 'x86_64')
url="https://easyrpg.org"
license=('MIT')
depends=('gcc-libs' 'expat' 'icu')
source=("https://easyrpg.org/downloads/player/$pkgver/liblcf-$pkgver.tar.xz")
sha256sums=('c48b4f29ee0c115339a6886fc435b54f17799c97ae134432201e994b1d3e0d34')
build () {
cd liblcf-$pkgver
./configure --prefix=/usr \
--enable-shared --disable-static \
--disable-update-mimedb
make
}
check() {
make -C liblcf-$pkgver check
}
package () {
cd liblcf-$pkgver
make DESTDIR="$pkgdir/" install
# license
install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/COPYING
}
|