forked from ports/contrib
19 lines
452 B
Plaintext
19 lines
452 B
Plaintext
# Description: ncurses based real time strategy game
|
|
# URL: https://github.com/a-nikolaev/curseofwar/wiki
|
|
# Maintainer: Maximilian Dietrich, dxm at openmailbox dot org
|
|
# Depends on: libsdl
|
|
|
|
name=curseofwar-sdl
|
|
version=1.2.0
|
|
release=1
|
|
source=(https://github.com/a-nikolaev/curseofwar/archive/v$version.tar.gz)
|
|
|
|
build () {
|
|
cd curseofwar-$version
|
|
make SDL=yes
|
|
make DESTDIR=$PKG \
|
|
SDL=yes \
|
|
MANPREFIX=/usr/man \
|
|
install
|
|
}
|