diff options
author | Liam Greenough | 2016-02-01 14:38:50 +1100 |
---|---|---|
committer | Liam Greenough | 2016-02-01 14:38:50 +1100 |
commit | b548040477763c68e413ab1069599154d1764da7 (patch) | |
tree | 3307a47a16cae62fdbf4b6f3e274c5e20835778b | |
download | aur-b548040477763c68e413ab1069599154d1764da7.tar.gz |
Initial import
-rw-r--r-- | .SRCINFO | 21 | ||||
-rw-r--r-- | PKGBUILD | 48 |
2 files changed, 69 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 00000000000..4d504abfff0 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,21 @@ +# Generated by mksrcinfo v8 +# Mon Feb 1 03:38:03 UTC 2016 +pkgbase = fallout-terminal-clone-git + pkgdesc = Simple clone for Fallout 3/NV terminal hacking in curses + pkgver = VERSION + pkgrel = 1 + url = https://github.com/Josh1147582/fallout-terminal-clone#branch=master + arch = i686 + arch = x86_64 + license = MIT + makedepends = gcc + makedepends = git + depends = ncurses + optdepends = cool-retro-term: improved immersion + provides = fallout-terminal-clone + conflicts = fallout-terminal-clone + source = fallout-terminal-clone::git+https://github.com/Josh1147582/fallout-terminal-clone.git + md5sums = SKIP + +pkgname = fallout-terminal-clone-git + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 00000000000..7cd8d71644a --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,48 @@ +# This is an example PKGBUILD file. Use this as a start to creating your own, +# and remove these comments. For more information, see 'man PKGBUILD'. +# NOTE: Please fill out the license field for your package! If it is unknown, +# then please put 'unknown'. + +# Maintainer: Liam Greenough <beacon515@gmail.com> +pkgname=fallout-terminal-clone-git +_pkgbase=fallout-terminal-clone +pkgver=VERSION +pkgrel=1 +epoch= +pkgdesc="Simple clone for Fallout 3/NV terminal hacking in curses" +arch=('i686' 'x86_64') +url="https://github.com/Josh1147582/fallout-terminal-clone#branch=master" +license=('MIT') +groups=() +depends=('ncurses') +makedepends=('gcc' 'git') +checkdepends=() +optdepends=('cool-retro-term: improved immersion') +provides=('fallout-terminal-clone') +conflicts=('fallout-terminal-clone') +replaces=() +backup=() +options=() +install= +changelog= +source=('fallout-terminal-clone::git+https://github.com/Josh1147582/fallout-terminal-clone.git') +noextract=() +md5sums=('SKIP') +validpgpkeys=() + +build() { + cd "$srcdir"/"$_pkgbase"/src + gcc FalloutTerminal.c -lncurses -o FalloutTerminal +} + +package() { + cd "$srcdir"/"$_pkgbase"/src + chmod +x FalloutTerminal + mkdir "$pkgdir"/usr + mkdir "$pkgdir"/usr/bin + cp FalloutTerminal "$pkgdir"/usr/bin +} +pkgver(){ + cd "$srcdir"/"$_pkgbase" + git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' +} |