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

Ports: Add bzip2 port

Saw that it can be included with the freetype port, so I added it.
This commit is contained in:
Luke 2021-03-06 02:18:44 +00:00 committed by Andreas Kling
parent c2f3d3afe1
commit 89846b5b7c
2 changed files with 8 additions and 0 deletions

7
Ports/bzip2/package.sh Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=bzip2
version=1.0.8
files="https://sourceware.org/pub/bzip2/bzip2-${version}.tar.gz bzip2-${version}.tar.gz"
workdir="bzip2-$version"
makeopts="bzip2 CC=${CC}"
installopts="PREFIX=${SERENITY_ROOT}/Build/Root/usr/local"