mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-27 13:11:46 +03:00
20 lines
387 B
Bash
Executable File
20 lines
387 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='lua'
|
|
version='5.4.6'
|
|
files=(
|
|
"http://www.lua.org/ftp/lua-${version}.tar.gz#7d5ea1b9cb6aa0b59ca3dde1c6adcb57ef83a1ba8e5432c0ecd06bf439b3ad88"
|
|
)
|
|
depends=(
|
|
'readline'
|
|
)
|
|
makeopts+=(
|
|
'-Csrc/'
|
|
'serenity'
|
|
"CC=${CC}"
|
|
"AR=${AR}"
|
|
"RANLIB=${RANLIB}"
|
|
)
|
|
installopts=(
|
|
"INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local"
|
|
)
|