summaryrefslogtreecommitdiff
path: root/repo/core/fakeroot.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-02 23:03:31 +0000
committerdavidovski <david@davidovski.xyz>2022-01-02 23:03:31 +0000
commitf74650f8e67df3e31e9f9e99a276ef1addfa9b14 (patch)
treee08363382d49909dc757aef5f7d79740bd58cc68 /repo/core/fakeroot.xibuild
parent243c18601709f79eaa93141358560ee1825e86ee (diff)
added fakeroot and fakechroot builds
Diffstat (limited to 'repo/core/fakeroot.xibuild')
-rw-r--r--repo/core/fakeroot.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/fakeroot.xibuild b/repo/core/fakeroot.xibuild
new file mode 100644
index 0000000..650f18c
--- /dev/null
+++ b/repo/core/fakeroot.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(glibc filesystem sed sh util-linux)
+
+SOURCE=https://github.com/mackyle/fakeroot
+DESC="Tool for simulating a superuser environment"
+
+build () {
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}