mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-04 00:52:19 +00:00
18 lines
763 B
Bash
18 lines
763 B
Bash
TERMUX_PKG_HOMEPAGE=https://dev.yorhel.nl/ncdc
|
|
TERMUX_PKG_DESCRIPTION="Modern and lightweight direct connect client with a friendly ncurses interface"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.25"
|
|
TERMUX_PKG_SRCURL=https://dev.yorhel.nl/download/ncdc-${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=b9be58e7dbe677f2ac1c472f6e76fad618a65e2f8bf1c7b9d3d97bc169feb740
|
|
TERMUX_PKG_DEPENDS="glib, libbz2, libgnutls, libsqlite, ncurses, zlib"
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
|
|
termux_step_post_configure() {
|
|
# Cross compiling steps documented in ncdc README
|
|
gcc $TERMUX_PKG_SRCDIR/deps/makeheaders.c -o makeheaders
|
|
gcc -I. $TERMUX_PKG_SRCDIR/doc/gendoc.c -o gendoc
|
|
touch -d "next hour" makeheaders gendoc
|
|
}
|