mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
7c2976e006
The ports `libvorbis`, `readline` and `timidity` would not install on macOS as a result of using `sed -i` without an extension provided. GNU sed is available through Homebrew, but it does not replace `sed` by default. Instead, provide a new `sed_in_place` function that calls `sed` with the right arguments.
16 lines
612 B
Bash
Executable File
16 lines
612 B
Bash
Executable File
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=libvorbis
|
|
version=1.3.7
|
|
useconfigure=true
|
|
configopts=("--disable-static" "--enable-shared")
|
|
use_fresh_config_sub=true
|
|
files="https://github.com/xiph/vorbis/releases/download/v${version}/libvorbis-${version}.tar.gz libvorbis-${version}.tar.gz 0e982409a9c3fc82ee06e08205b1355e5c6aa4c36bca58146ef399621b0ce5ab"
|
|
auth_type=sha256
|
|
depends=("libogg")
|
|
|
|
post_install() {
|
|
# Fix up broken libtool paths
|
|
# FIXME: apply a proper libtool fix
|
|
sed_in_place "s# /usr/local# ${SERENITY_INSTALL_ROOT}/usr/local#g" "${SERENITY_INSTALL_ROOT}"/usr/local/lib/libvorbis*.la
|
|
}
|