mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-17 13:17:33 +00:00
13 lines
340 B
Bash
Executable File
13 lines
340 B
Bash
Executable File
#!/bin/bash ../.port_include.sh
|
|
port=libexpat
|
|
version=2.2.9
|
|
useconfigure=true
|
|
files="https://codeload.github.com/libexpat/libexpat/tar.gz/R_2_2_9 expat-2.2.9.tar.gz"
|
|
workdir=libexpat-R_2_2_9/expat/
|
|
|
|
configure() {
|
|
run ./buildconf.sh
|
|
run patch -p 0 < fix-autoconf.patch
|
|
run ./"$configscript" --host=i686-pc-serenity $configopts
|
|
}
|