lang/lua: fix symbolic objects not installing
This commit is contained in:
parent
fc627c5ada
commit
38773c5b49
|
@ -22,6 +22,7 @@ compiles unmodified in all known platforms. The implementation goals are
|
|||
simplicity, efficiency, portability, and low embedding cost."
|
||||
category="lang"
|
||||
version="5.4.6"
|
||||
version2=${version%.*}
|
||||
maintainer="ffqq@danwin1210.de"
|
||||
www="https://www.lua.org/"
|
||||
master_site="https://www.lua.org/ftp"
|
||||
|
@ -44,8 +45,9 @@ build_process() {
|
|||
mv -f _ src/luaconf.h
|
||||
|
||||
make linux
|
||||
make INSTALL_TOP=$TAMANDUA_STAGE_DIR/usr \
|
||||
INSTALL_MAN=$TAMANDUA_STAGE_DIR/usr/share/man/man1 \
|
||||
make INSTALL_TOP=$TAMANDUA_STAGE_DIR/usr \
|
||||
TO_LIB="liblua.so liblua.so.$version2 liblua.so.$version" \
|
||||
INSTALL_MAN=$TAMANDUA_STAGE_DIR/usr/share/man/man1 \
|
||||
install
|
||||
mkdir -pv $TAMANDUA_STAGE_DIR/usr/share/doc/lua-5.4.6
|
||||
mkdir -pv $TAMANDUA_STAGE_DIR/usr/lib/pkgconfig
|
||||
|
|
Loading…
Reference in New Issue