mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-13 05:10:51 +00:00
21 lines
693 B
Bash
21 lines
693 B
Bash
TERMUX_PKG_HOMEPAGE=https://sites.google.com/site/broguegame/
|
|
TERMUX_PKG_DESCRIPTION="Roguelike dungeon crawling game (community edition)"
|
|
TERMUX_PKG_LICENSE="AGPL-V3"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.14"
|
|
TERMUX_PKG_SRCURL=https://github.com/tmewett/BrogueCE/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=9e26a3e3612f08d3785846e73e6b8862cf4682f7a95aa9028bb8175b60f33d47
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="ncurses"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_GROUPS="games"
|
|
|
|
termux_step_pre_configure () {
|
|
CFLAGS+=" -fcommon"
|
|
CC="$CC $CFLAGS $CPPFLAGS $LDFLAGS"
|
|
}
|
|
|
|
termux_step_make_install () {
|
|
install -m700 bin/brogue $TERMUX_PREFIX/bin
|
|
}
|