summaryrefslogtreecommitdiff
path: root/repo/core/sed.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-10-06 17:19:20 +0100
committerdavidovski <david@davidovski.xyz>2021-10-06 17:19:20 +0100
commit0a31fc2a959ea1230d07cfd837f5a9a945a7f80a (patch)
tree4c9aef911135753e8cdffd849c3d071167886168 /repo/core/sed.xibuild
Initial commit, added core packages
Diffstat (limited to 'repo/core/sed.xibuild')
-rw-r--r--repo/core/sed.xibuild19
1 files changed, 19 insertions, 0 deletions
diff --git a/repo/core/sed.xibuild b/repo/core/sed.xibuild
new file mode 100644
index 0000000..d68d586
--- /dev/null
+++ b/repo/core/sed.xibuild
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+DEPS=(glibc acl attr)
+
+SOURCE=https://ftp.gnu.org/gnu/sed/sed-4.8.tar.xz
+DESC="GNU stream editor"
+
+build () {
+ ./configure --prefix=/usr
+ make
+ make html
+
+ make DESTDIR=$PKG_DEST install
+}
+
+package () {
+ install -d -m755 $PKG_DEST/usr/share/doc/sed-4.8
+ install -m644 doc/sed.html $PKG_DEST/usr/share/doc/sed-4.8
+}