diff options
author | Maximilian Dietrich <dxm@openmailbox.org> | 2013-08-19 20:26:13 +0200 |
---|---|---|
committer | Maximilian Dietrich <dxm@openmailbox.org> | 2013-08-19 20:26:13 +0200 |
commit | 99693b64e74ae5fe8d46ca430ebbdf93fce25b87 (patch) | |
tree | 3a19523b9ec0c4e6cdd4105891e3c51e0b0e7dd4 | |
parent | c6857863d2cced6c8d257354143b68e0beb6f545 (diff) | |
download | contrib-99693b64e74ae5fe8d46ca430ebbdf93fce25b87.tar.gz contrib-99693b64e74ae5fe8d46ca430ebbdf93fce25b87.tar.xz |
curseofwar: initial commit
-rw-r--r-- | curseofwar/.footprint | 6 | ||||
-rw-r--r-- | curseofwar/.md5sum | 1 | ||||
-rw-r--r-- | curseofwar/Pkgfile | 18 |
3 files changed, 25 insertions, 0 deletions
diff --git a/curseofwar/.footprint b/curseofwar/.footprint new file mode 100644 index 000000000..59337c830 --- /dev/null +++ b/curseofwar/.footprint @@ -0,0 +1,6 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/curseofwar +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man6/ +-rw-r--r-- root/root usr/man/man6/curseofwar.6.gz diff --git a/curseofwar/.md5sum b/curseofwar/.md5sum new file mode 100644 index 000000000..6c6aff561 --- /dev/null +++ b/curseofwar/.md5sum @@ -0,0 +1 @@ +361f364342af357ed78ae4eabe465da8 v1.2.0.tar.gz diff --git a/curseofwar/Pkgfile b/curseofwar/Pkgfile new file mode 100644 index 000000000..70ca4a974 --- /dev/null +++ b/curseofwar/Pkgfile @@ -0,0 +1,18 @@ +# 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: 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 +} |