From 751b7f3d84515715d07d92a5aed78062bd39adff Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 3 May 2022 19:59:53 +0100 Subject: added extra files --- repo/apps/links.xibuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 repo/apps/links.xibuild (limited to 'repo/apps/links.xibuild') diff --git a/repo/apps/links.xibuild b/repo/apps/links.xibuild new file mode 100644 index 0000000..bb2540d --- /dev/null +++ b/repo/apps/links.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="links" +DESC="Web browser running in text mode only" + +MAKEDEPS="make " +DEPS="bzip2 openssl libevent musl zlib zstd " + +PKG_VER=2.25 +SOURCE="http://links.twibright.com/download/links-$PKG_VER.tar.bz2" + +build () { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --mandir=/usr/share/man + --disable-javascript \ + --disable-graphics \ + --without-x \ + --disable-nls + make +} + +package () { + make DESTDIR=$PKG_DEST install +} -- cgit v1.2.1