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/git | |
parent | 79a4dcec2e34c5d58ab0661146ee9727452d672b (diff) | |
download | spm-aa7e99e130b47caebaacd24e6d9e4f89f42cd213.tar.gz |
Next chunk
Diffstat (limited to 'scripts/git')
-rw-r--r-- | scripts/git/build.sh | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/scripts/git/build.sh b/scripts/git/build.sh index 62a058c..fa1ce98 100644 --- a/scripts/git/build.sh +++ b/scripts/git/build.sh @@ -6,12 +6,21 @@ sources=( "https://github.com/${name}/${name}/archive/v${version}.tar.gz" ) build_depends=( + "autoconf" "automake" + "curl" "gettext" "libtool" + "openssl" + "pcre" + "tk" + "zlib" ) depends=( "curl" + "openssl" + "pcre" + "tk" "zlib" ) @@ -22,8 +31,13 @@ function prepare() { } function build() { + export LDFLAGS="${LDFLAGS} -Wl,-rpath=${prefix}/lib" make configure - ./configure --prefix=$prefix + ./configure --prefix=$prefix \ + --libdir=$prefix/lib \ + --with-curl \ + --with-expat \ + --with-tcltk make -j${maxjobs} } |