blob: 9cfce6f89f170689cf00a10cb698d9582958cbc9 (
plain)
1 # Description: ncurses based real time strategy game
2 # URL: https://github.com/a-nikolaev/curseofwar/wiki
3 # Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
4 # Depends on: libsdl
5
6 name=curseofwar-sdl
7 version=1.2.0
8 release=1
9 source=(https://github.com/a-nikolaev/curseofwar/archive/v$version.tar.gz)
10
11 build () {
12 cd curseofwar-$version
13 make SDL=yes
14 make DESTDIR=$PKG \
15 SDL=yes \
16 MANPREFIX=/usr/man \
17 install
18 }
|