mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-05 17:46:52 +00:00
16 lines
409 B
Bash
Executable file
16 lines
409 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='stb'
|
|
version='af1a5bc352164740c1cc1354942b1c6b72eacb8a'
|
|
files=(
|
|
"https://github.com/nothings/stb/archive/${version}.zip#e3d0edbecd356506d3d69b87419de2f9d180a98099134c6343177885f6c2cbef"
|
|
)
|
|
|
|
build() {
|
|
:
|
|
}
|
|
|
|
install() {
|
|
target_dir="${SERENITY_INSTALL_ROOT}/usr/local/include/"
|
|
run_nocd mkdir -p "${target_dir}"
|
|
run cp -r "./" "${target_dir}"
|
|
}
|