diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-12-27 03:57:49 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-12-27 03:57:49 +0100 |
commit | 879e295de04bc0699462c959a1d331dcf5446345 (patch) | |
tree | 998d651a0a38b310dc396994c80d5b693d2ec225 /build-aux/travis-build-github-lambda.sh | |
parent | 7adc75dedf789c61ca15b0ccf239367b171be30c (diff) | |
download | blogc-879e295de04bc0699462c959a1d331dcf5446345.tar.gz blogc-879e295de04bc0699462c959a1d331dcf5446345.tar.bz2 blogc-879e295de04bc0699462c959a1d331dcf5446345.zip |
github-lambda: drop external dependencies
Diffstat (limited to 'build-aux/travis-build-github-lambda.sh')
-rwxr-xr-x | build-aux/travis-build-github-lambda.sh | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/build-aux/travis-build-github-lambda.sh b/build-aux/travis-build-github-lambda.sh deleted file mode 100755 index 6a46c05..0000000 --- a/build-aux/travis-build-github-lambda.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash - -set -ex - -PV_DEPS=2 - -PN_DEPS="blogc-lambda-deps" -P_DEPS="${PN_DEPS}-${PV_DEPS}" -A_DEPS="${P_DEPS}.tar.xz" -SRC_DEPS="https://travis-distfiles.rgm.io/${PN_DEPS}/${P_DEPS}/${P_DEPS}.tar.xz" - -rm -rf root build -mkdir -p root build - -wget -c "${SRC_DEPS}" "${SRC_DEPS}.sha512" -sha512sum -c "${A_DEPS}.sha512" -tar -xvf "${A_DEPS}" -C root/ - -pushd build > /dev/null -../configure \ - CFLAGS="-Wall -g -O0" \ - --disable-ronn \ - --disable-silent-rules \ - --disable-tests \ - --disable-valgrind \ - --disable-git-receiver \ - --disable-runserver \ - --enable-make-embedded -popd > /dev/null - -make -C build LDFLAGS="-all-static" blogc - -PV="$(grep PACKAGE_VERSION build/config.h | cut -d\" -f2)" - -install -m 755 build/blogc root/bin/blogc -install -m 644 src/blogc-github-lambda/lambda_function.py root/lambda_function.py -install -m 644 LICENSE root/licenses/blogc -strip root/bin/blogc - -pushd root/ > /dev/null -zip --symlinks -rq "../blogc-github-lambda-${PV}.zip" * -popd > /dev/null |