summaryrefslogtreecommitdiff
path: root/repo/bsd-utils
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2023-02-02 14:10:02 +0000
committerdavidovski <david@davidovski.xyz>2023-02-02 14:10:02 +0000
commitf29d569cd33a73da5ad675f43a34ad53c5cc9bc6 (patch)
tree76fe6267f8307e7630fc6f53ff99a9767ad40de0 /repo/bsd-utils
parent05d004dfe0c9a9d898fac8a4a0292ca2a74ca391 (diff)
Work
Diffstat (limited to 'repo/bsd-utils')
-rw-r--r--repo/bsd-utils/bsd-utils.xibuild22
1 files changed, 22 insertions, 0 deletions
diff --git a/repo/bsd-utils/bsd-utils.xibuild b/repo/bsd-utils/bsd-utils.xibuild
new file mode 100644
index 0000000..064aae4
--- /dev/null
+++ b/repo/bsd-utils/bsd-utils.xibuild
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+NAME="bsd-utils"
+DESC="BSD coreutils is a port of many utilities from BSD to Linux and macOS."
+
+MAKEDEPS="cmake openssl"
+
+PKG_VER=master
+SOURCE="https://github.com/DiegoMagdaleno/BSDCoreUtils.git"
+
+build () {
+ cmake -B build \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=/usr/lib \
+ -DBUILD_SHARED_LIBS=True \
+ -DBUILD_STATIC_LIBS=OFF
+ cmake --build build
+}
+
+package () {
+ DESTDIR="$PKG_DEST" cmake --install build
+}