1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:27:45 +00:00

Ports: Add tree utility port

This commit is contained in:
Liav A 2022-10-16 20:32:44 +03:00 committed by Linus Groh
parent c58c938659
commit 711f64d366
4 changed files with 43 additions and 0 deletions

13
Ports/tree/package.sh Executable file
View file

@ -0,0 +1,13 @@
#!/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"
auth_type='sha256'
build() {
run make CC="${CC}" all
}
install() {
run make install PREFIX="${SERENITY_INSTALL_ROOT}/usr/local"
}