diff options
author | davidovski <david@davidovski.xyz> | 2022-05-03 19:59:53 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-03 19:59:53 +0100 |
commit | 751b7f3d84515715d07d92a5aed78062bd39adff (patch) | |
tree | 9bfdc04a539250f35452cbd0986ca361dd91509f /repo/apps | |
parent | 50740393013cb5fde05318d917ac4b68c58fdfa9 (diff) |
added extra files
Diffstat (limited to 'repo/apps')
-rw-r--r-- | repo/apps/links.xibuild | 27 | ||||
-rw-r--r-- | repo/apps/xlinks.xibuild | 30 |
2 files changed, 57 insertions, 0 deletions
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 +} diff --git a/repo/apps/xlinks.xibuild b/repo/apps/xlinks.xibuild new file mode 100644 index 0000000..992c6a3 --- /dev/null +++ b/repo/apps/xlinks.xibuild @@ -0,0 +1,30 @@ +#!/bin/sh + +NAME="xlinks" +DESC="Web browser running in both graphics and text mode" + +MAKEDEPS="make " +DEPS="bzip2 openssl libevent musl zlib zstd libx11 tiff libpng librsvg" + +PKG_VER=2.25 +SOURCE="http://links.twibright.com/download/links-$PKG_VER.tar.bz2" +ADDITIONAL="links.desktop" + +build () { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-graphics \ + --with-x \ + --with-fb + --disable-nls + make +} + +package () { + make DESTDIR=$PKG_DEST install + mv $PKG_DEST/usr/bin/links $PKG_DEST/usr/bin/xlinks + install -D -m0644 "links.desktop" "$PKG_DEST/usr/share/applications/links.desktop" +} |