Was supposed to be a linux distribution, now just a collection of build scripts for packages on top of (ideally) any distribution.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
664 B

import 'compile/configure'
import 'misc/debian'
name=fakeroot
version=1.21
misc_debian_download 3.1 \
'fb44d1c6494a2ba035479efe8193ccf7' \
'be5c9a0e516869fca4a6758105968e5a'
_
cd "$name-$version"
misc_debian_patch
./bootstrap
compile_configure -I -- --disable-static
make DESTDIR="$dir_install" install-exec
if command -v po4a 2> /dev/null; then
( cd doc
po4a -k 0 --rm-backups --variable 'srcdir=../doc/' po4a/po4a.cfg
)
make DESTDIR="$dir_install" install-data
else
install -Dm644 -t "$dir_install/$dir_prefix/$dir_man/man1" doc/*.1
fi
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: