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.
|
|
|
name=webfs
|
|
|
|
version=1.21
|
|
|
|
|
|
|
|
dlextract "https://www.kraxel.org/releases/$name/$name-$version.tar.gz" \
|
|
|
|
'6dc125fe160479404147e7bbfc781dbc'
|
|
|
|
_
|
|
|
|
|
|
|
|
cd "$name-$version"
|
|
|
|
|
|
|
|
# Fix a problem with some echo implementations, where -e means nothing.
|
|
|
|
sed -i -e "s/echo -e/echo/g" mk/Autoconf.mk
|
|
|
|
# Most distros don't have any /etc/mime.types
|
|
|
|
sed -i -e "s@/etc/mime.types@/dev/null@g" GNUmakefile
|
|
|
|
|
|
|
|
make
|
|
|
|
install -Dm755 -t "$dir_install/$dir_prefix/$dir_bin" "${name}d"
|
|
|
|
install -Dm644 "${name}d.man" "$dir_install/$dir_prefix/$dir_man/man1/${name}d.1"
|
|
|
|
|
|
|
|
# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab:
|