mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-09 18:16:09 +03:00
18 lines
430 B
Bash
Executable File
18 lines
430 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='lua'
|
|
version='5.4.4'
|
|
files="http://www.lua.org/ftp/lua-${version}.tar.gz lua-${version}.tar.gz 164c7849653b80ae67bec4b7473b884bf5cc8d2dca05653475ec2ed27b9ebf61"
|
|
depends=("readline")
|
|
auth_type='sha256'
|
|
makeopts=(
|
|
"-Csrc/"
|
|
"-j$(nproc)"
|
|
"serenity"
|
|
"CC=${CC}"
|
|
"AR=${AR}"
|
|
"RANLIB=${RANLIB}"
|
|
)
|
|
installopts=(
|
|
"INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local"
|
|
)
|