diff options
author | davidovski <david@davidovski.xyz> | 2022-01-10 18:57:26 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-10 18:57:26 +0000 |
commit | d50c14859c9d0f6dbcdd8895682ca65245c4e278 (patch) | |
tree | b10729b2e8f1406971550ca21dc3d98223c99baa /repo/tip/fakechroot.xibuild | |
parent | fcee362d51239fce8d42f21dd8b625b9df463161 (diff) |
moved fakeroots to tip
fakeroots are now in the tip repo
fixed issues with automake
Diffstat (limited to 'repo/tip/fakechroot.xibuild')
-rw-r--r-- | repo/tip/fakechroot.xibuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/tip/fakechroot.xibuild b/repo/tip/fakechroot.xibuild new file mode 100644 index 0000000..2b9560b --- /dev/null +++ b/repo/tip/fakechroot.xibuild @@ -0,0 +1,13 @@ +#!/bin/bash + +DEPS=(sh perl) + +SOURCE=https://github.com/dex4er/fakechroot +DESC="Gives a fake chroot environment" + +build () { + ./autogen.sh + ./configure --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} |