#!/bin/sh set -e cd "$SRCDIR" export CFLAGS="${CFLAGS} -I/usr/local/include" export LDFLAGS="${LDFLAGS} -L/usr/local/lib -R/usr/local/lib" ./configure \ --prefix=$PREFIX \ --build=$BUILD_TRIPLE \ --host=$BUILD_TRIPLE \ --sysconfdir=$SYSCONFDIR \ --with-regex=posix gmake -j${JOBS:-1} gmake install DESTDIR="$PKGDIR" # less - Terminal pager program # https://www.greenwoodsoftware.com/less/ [package] name = "less" version = "692" release = 1 description = "Terminal pager program similar to more" url = "https://www.greenwoodsoftware.com/less/" license = "GPL-3.0" maintainer = "Chris Tusa " arch = "x86_64" [dependencies] runtime = ["ncurses"] build = ["ncurses"] [[source]] file = "less-692.tar.gz" urls = ["https://greenwoodsoftware.com/less/less-692.tar.gz"] checksum = "61300f603798ecf1d7786570789f0ff3f5a1acf075a6fb9f756837d166e37d14" [build] parallel = true