#!/bin/sh

NAME="fakeroot"
DESC="Gives a fake root environment, useful for building packages as a non-privileged user"

MAKEDEPS=" libtool autoconf automake libcap acl linux-headers"

PKG_VER=1.31
SOURCE="https://deb.debian.org/debian/pool/main/f/fakeroot/fakeroot_$PKG_VER.orig.tar.gz"

ADDITIONAL="
do-not-redefine-id_t.patch
fakeroot-no64.patch
fakeroot-skip-ipc-sanity-check.patch
fakeroot-stdint.patch
fix-format.patch
fix-shell-in-fakeroot.patch
"

prepare () {
    apply_patches
}

build() {
    # musl does not have _STAT_VER, it's really not used for
    # anything, so define it as zero (just like uclibc does)
    export CFLAGS="-D_STAT_VER=0 $CFLAGS"

	CONFIG_SHELL=/bin/sh ./bootstrap
	CONFIG_SHELL=/bin/sh ./configure \
		--prefix=/usr \
		--disable-static

	make
}

package() {
	make DESTDIR="$PKG_DEST" install
}

