blob: 2a04bb3286d2cd7edfb176b0bae9a34ea9f02b9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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"
)
|