blob: 6b0940923c251e8d4f717556ff6252989e13cdcc [file]
#!/bin/bash
download()
{
git_clone_update https://github.com/mackyle/fakeroot.git || return
}
build()
{
cd ../fakeroot
patch -p1 < $LKP_SRC/pack/makepkg_fakeroot.patch
libtoolize || return
aclocal || return
autoconf || return
autoheader || return
automake --add-missing || return
./configure --prefix $BM_ROOT || return
make || return
}
install()
{
make install || return
}