diff options
author | Frederic Bezies | 2025-03-02 15:13:01 +0100 |
---|---|---|
committer | Frederic Bezies | 2025-03-02 15:13:01 +0100 |
commit | cab6031cac54b4b32b6507dd6dc52dc7374bd485 (patch) | |
tree | 5b45f1f1b964fbecf9d778fdc6b473abe55f8f1d | |
parent | 7f4ee845b650599c0c53081b24d6e1cffeeace0a (diff) | |
download | aur-frotz-git.tar.gz |
adding back ncurses frontend
-rw-r--r-- | .SRCINFO | 13 | ||||
-rw-r--r-- | PKGBUILD | 22 |
2 files changed, 23 insertions, 12 deletions
@@ -1,7 +1,7 @@ pkgbase = frotz-git pkgdesc = Z-machine interpreter for interactive fiction games pkgver = 2.55.r10.g37403ec - pkgrel = 1 + pkgrel = 2 url = https://gitlab.com/DavidGriffith/frotz arch = x86_64 license = GPL @@ -29,6 +29,17 @@ pkgname = frotz-dumb-git provides = frotz-dumb conflicts = frotz-dumb +pkgname = frotz-ncurses-git + pkgdesc = ncurses-based Z-machine interpreter for interactive fiction games + depends = libao + depends = libmodplug + depends = libsamplerate + depends = libsndfile + depends = ncurses + provides = frotz + provides = frotz-ncurses + conflicts = frotz-ncurses + pkgname = frotz-sdl-git pkgdesc = Graphical Z-machine interpreter for interactive fiction games depends = freetype2 @@ -1,9 +1,9 @@ # Maintainer: Ivy Foster <code@iff.ink> pkgbase=frotz-git -pkgname=(frotz-dumb-git frotz-sdl-git) +pkgname=(frotz-dumb-git frotz-ncurses-git frotz-sdl-git) pkgver=2.55.r10.g37403ec -pkgrel=1 +pkgrel=2 pkgdesc='Z-machine interpreter for interactive fiction games' makedepends=('git' 'libao' 'libmodplug' 'libsamplerate' 'libsndfile' 'libvorbis' 'ncurses' 'freetype2' 'libjpeg-turbo' 'libpng' 'sdl2' 'sdl2_mixer' 'zlib') @@ -35,15 +35,15 @@ package_frotz-dumb-git() { make DESTDIR="$pkgdir" PREFIX=/usr install_dumb } -#package_frotz-ncurses-git() { -# pkgdesc='ncurses-based Z-machine interpreter for interactive fiction games' -# provides=('frotz' 'frotz-ncurses') -# conflicts=('frotz-ncurses') -# depends=('libao' 'libmodplug' 'libsamplerate' 'libsndfile' 'ncurses') -# -# cd frotz -# make DESTDIR="$pkgdir" PREFIX=/usr install_frotz -#} +package_frotz-ncurses-git() { + pkgdesc='ncurses-based Z-machine interpreter for interactive fiction games' + provides=('frotz' 'frotz-ncurses') + conflicts=('frotz-ncurses') + depends=('libao' 'libmodplug' 'libsamplerate' 'libsndfile' 'ncurses') + + cd frotz + make DESTDIR="$pkgdir" PREFIX=/usr install_frotz +} package_frotz-sdl-git() { pkgdesc='Graphical Z-machine interpreter for interactive fiction games' |