|
buildTools: [target-toolchain, curl] |
|
buildVars: [AUTOCONF_HOST, PKG_VERSION] |
|
buildScript: | |
|
mkdir -p install |
|
tar -xf $1/git-${PKG_VERSION}.tar.xz |
|
|
|
pushd git-${PKG_VERSION} |
|
./configure --host=${AUTOCONF_HOST} \ |
|
--prefix=/usr \ |
|
--with-curl=${BOB_DEP_PATHS[net::curl-dev]}/usr \ |
|
--without-python \ |
|
--without-expat |
|
makeParallel LIB_4_CRYPTO="$(pkg-config --libs libssl libcrypto)" |
|
make DESTDIR=${PWD}/../install install |
|
popd |
currently it is not possible to cross-compile git, because of missing --build argument, we should add this.
basement/recipes/devel/git.yaml
Lines 24 to 38 in cbd2542
currently it is not possible to cross-compile git, because of missing
--buildargument, we should add this.