summaryrefslogtreecommitdiff
path: root/repo/skip/fakeroot.xibuild
blob: 1b147a3a2a72a0ab78462deca7c38a99f9e41cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

MAKEDEPS=(make )
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 
}