mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
3ec10aeef1
We're having 0.16-git-3 in our repository since a while now (atleast 2 years), and everytime this package is rebuilt, newer version is pushed but is treated like older version. We've scripts to automatically delete old versions of debs on the server automatically. So 0.16-4 was automatically deleted every 6 hours. `dpkg --compare-versions 0.16-4 gt 0.16-git-3` fails, so this epoch is necessary.
16 lines
562 B
Bash
16 lines
562 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/hackndev/0verkill
|
|
TERMUX_PKG_DESCRIPTION="Bloody 2D action deathmatch-like game in ASCII-ART"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1:0.16
|
|
TERMUX_PKG_SRCURL=https://github.com/ravener/0verkill/archive/refs/tags/v${TERMUX_PKG_VERSION:2}.tar.gz
|
|
TERMUX_PKG_SHA256=d337e4a7dd91f26c837e96492d960c7fd77c75bc24bcc6ed8d350df39edf8bb8
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_GROUPS="games"
|
|
|
|
termux_step_pre_configure() {
|
|
autoreconf -vfi
|
|
CFLAGS+=" -fcommon"
|
|
}
|