summaryrefslogtreecommitdiff
path: root/repo/system/coreutils.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-03-02 16:24:16 +0000
committerdavidovski <david@davidovski.xyz>2022-03-02 16:24:16 +0000
commit6b3593e13e688d558be05846d1e2d9acf6e97c71 (patch)
tree6e0cdcd42b5d5aef366ac5d066da856e82c9a649 /repo/system/coreutils.xibuild
parente8213fac46bfcb8068a883cb88b2bb1587f190f9 (diff)
added s6 init
Diffstat (limited to 'repo/system/coreutils.xibuild')
-rw-r--r--repo/system/coreutils.xibuild20
1 files changed, 0 insertions, 20 deletions
diff --git a/repo/system/coreutils.xibuild b/repo/system/coreutils.xibuild
deleted file mode 100644
index 150787b..0000000
--- a/repo/system/coreutils.xibuild
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="musl acl attr gmp"
-
-SOURCE=https://git.suckless.org/sbase
-DESC="sbase from suckless.org"
-
-build () {
- make
-}
-
-package () {
- make PREFIX=/usr DESTDIR=$PKG_DEST install
-
- for p in tar sed; do
- rm $PKG_DEST/usr/bin/$p
- rm $PKG_DEST/usr/share/man/man1/$p.1
- done
-}