19 lines
412 B
Plaintext
19 lines
412 B
Plaintext
# Description: ncurses based real time strategy game
|
|
# URL: https://github.com/a-nikolaev/curseofwar/wiki
|
|
# Maintainer: unmaintained
|
|
# Depends on: ncurses
|
|
|
|
name=curseofwar
|
|
version=1.2.0
|
|
release=1
|
|
source=(https://github.com/a-nikolaev/$name/archive/v$version.tar.gz)
|
|
|
|
build () {
|
|
cd "$name-$version"
|
|
make
|
|
make DESTDIR=$PKG \
|
|
MANPREFIX=/usr/man \
|
|
install
|
|
rm -rf $PKG/usr/share
|
|
}
|