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.

25 lines
682 B

# TODO: Install shared library, remove static library.
name=lua
majver=5.3
version=$majver.3
update_url="http://www.lua.org/download.html"
dlextract "http://www.lua.org/ftp/$name-$version.tar.gz" \
"703f75caa4fdf4a911c1a72e67a27498"
header_end
cd "$name-$version"
make linux \
MYLIBS="-lncurses" \
MYCFLAGS="$CFLAGS"
make install \
INSTALL_TOP="$dir_install/$dir_prefix" \
INSTALL_BIN="$dir_install/$dir_prefix/$dir_bindir" \
INSTALL_LIB="$dir_install/$dir_prefix/$dir_libdir" \
INSTALL_MAN="$dir_install/$dir_prefix/$dir_mandir" \
INSTALL_CMOD="$dir_install/$dir_prefix/$dir_libdir/$majver"
# vim:set tabstop=4 shiftwidth=4 syntax=sh et: