diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-18 10:05:27 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-11-18 10:05:27 -0500 |
commit | aa7e99e130b47caebaacd24e6d9e4f89f42cd213 (patch) | |
tree | 5b599c731389e0b259b840710f8db1ffe9913181 /scripts/libxml2/build.sh | |
parent | 79a4dcec2e34c5d58ab0661146ee9727452d672b (diff) | |
download | spm-aa7e99e130b47caebaacd24e6d9e4f89f42cd213.tar.gz |
Next chunk
Diffstat (limited to 'scripts/libxml2/build.sh')
-rw-r--r-- | scripts/libxml2/build.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/libxml2/build.sh b/scripts/libxml2/build.sh index 7f3eee8..d1759d1 100644 --- a/scripts/libxml2/build.sh +++ b/scripts/libxml2/build.sh @@ -8,8 +8,11 @@ sources=( build_depends=( "automake" "autoconf" + "libtool" +) +depends=( + "icu" ) -depends=() function prepare() { tar xf v${version}.tar.gz @@ -17,7 +20,8 @@ function prepare() { } function build() { - ./autogen.sh --prefix="${prefix}" + sh autogen.sh + ./configure --prefix="${prefix}" make -j${maxjobs} } |