summaryrefslogtreecommitdiff
path: root/repo/util/less.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/util/less.xibuild')
-rw-r--r--repo/util/less.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/util/less.xibuild b/repo/util/less.xibuild
new file mode 100644
index 0000000..a2bb435
--- /dev/null
+++ b/repo/util/less.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(glibc ncurses pcre2)
+
+SOURCE=https://www.greenwoodsoftware.com/less/less-590.tar.gz
+DESC="A terminal based program for viewing text files"
+
+build () {
+ ./configure --prefix=/usr --sysconfdir=/etc
+ make
+ make DESTDIR=$PKG_DEST install
+}