mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
14 lines
348 B
Bash
Executable file
14 lines
348 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='libfts'
|
|
version='1.2.7'
|
|
files=(
|
|
"https://github.com/void-linux/musl-fts/archive/refs/tags/v${version}.tar.gz#49ae567a96dbab22823d045ffebe0d6b14b9b799925e9ca9274d47d26ff482a6"
|
|
)
|
|
workdir="musl-fts-${version}"
|
|
useconfigure='true'
|
|
|
|
pre_configure() {
|
|
pushd $workdir
|
|
./bootstrap.sh
|
|
popd
|
|
}
|