mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
16 lines
406 B
Bash
Executable file
16 lines
406 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=libzip
|
|
useconfigure=true
|
|
version=1.7.3
|
|
depends="zlib"
|
|
workdir=libzip-${version}
|
|
configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt"
|
|
files="https://libzip.org/download/libzip-${version}.tar.gz libzip-${version}.tar.gz"
|
|
|
|
configure() {
|
|
run cmake $configopts
|
|
}
|
|
|
|
install() {
|
|
run make DESTDIR=$SERENITY_BUILD_DIR/Root install
|
|
}
|