From 2c26fdf3685f7164613dea36388218bd11b88886 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Wed, 31 Dec 2025 04:13:09 -0500 Subject: [PATCH] new blfs: www-client/links-2.30 --- www-client/links-2.30.PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 www-client/links-2.30.PKGBUILD diff --git a/www-client/links-2.30.PKGBUILD b/www-client/links-2.30.PKGBUILD new file mode 100644 index 0000000..f0e61b3 --- /dev/null +++ b/www-client/links-2.30.PKGBUILD @@ -0,0 +1,33 @@ +pkgname=links +pkgver=2.30 +pkgdesc='A text WWW browser, similar to Lynx' +arch=('x86_64') +homepage='http://links.twibright.com/' +license=('GPL') +depends=('bzip2' 'libevent' 'openssl' 'xz' 'zstd') +sources=("${pkgname}-${pkgver}.tar.bz2") +urls=("http://links.twibright.com/download/${sources[0]}") +md5sums=("dc56041551980c74dd354cd7c2882539") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_build() { + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --disable-javascript \ + --disable-graphics \ + --without-x \ + --without-fb + make +} + +src_install() { + make DESTDIR="${pkgdir}" install +} + + + + +# vim:ft=sh syn=sh et sw=2: