summaryrefslogtreecommitdiff
path: root/repo/tip/fakeroot.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-10 18:57:26 +0000
committerdavidovski <david@davidovski.xyz>2022-01-10 18:57:26 +0000
commitd50c14859c9d0f6dbcdd8895682ca65245c4e278 (patch)
treeb10729b2e8f1406971550ca21dc3d98223c99baa /repo/tip/fakeroot.xibuild
parentfcee362d51239fce8d42f21dd8b625b9df463161 (diff)
moved fakeroots to tip
fakeroots are now in the tip repo fixed issues with automake
Diffstat (limited to 'repo/tip/fakeroot.xibuild')
-rw-r--r--repo/tip/fakeroot.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/tip/fakeroot.xibuild b/repo/tip/fakeroot.xibuild
new file mode 100644
index 0000000..650f18c
--- /dev/null
+++ b/repo/tip/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
+}