mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-02 19:44:27 +00:00
This commit updates the formatting for all ports to be updated in this PR in one go, to keep those changes centralized.
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.4'
|
|
files=(
|
|
"http://www.lua.org/ftp/lua-${version}.tar.gz#164c7849653b80ae67bec4b7473b884bf5cc8d2dca05653475ec2ed27b9ebf61"
|
|
)
|
|
depends=(
|
|
'readline'
|
|
)
|
|
makeopts+=(
|
|
'-Csrc/'
|
|
'serenity'
|
|
"CC=${CC}"
|
|
"AR=${AR}"
|
|
"RANLIB=${RANLIB}"
|
|
)
|
|
installopts=(
|
|
"INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local"
|
|
)
|