mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
12 lines
367 B
Bash
Executable file
12 lines
367 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port='tree'
|
|
version='2.0.4'
|
|
files="https://github.com/Old-Man-Programmer/tree/archive/refs/tags/${version}.tar.gz tree-${version}.tar.gz 3ebeaf77a3b3829bcf665329e9d0f3624079c2c4cb4ef14cf6d7129a1a208b59"
|
|
|
|
build() {
|
|
run make CC="${CC}" all
|
|
}
|
|
|
|
install() {
|
|
run make install PREFIX="${SERENITY_INSTALL_ROOT}/usr/local"
|
|
}
|