Refactor packaging scripts, add ARMv7/v8 binaries

This commit is contained in:
Lovell Fuller
2016-08-12 13:28:00 +01:00
parent e68a14c94c
commit 475f0bf120
24 changed files with 289 additions and 360 deletions

View File

@@ -0,0 +1,15 @@
FROM socialdefect/raspbian-jessie-core
MAINTAINER Lovell Fuller <npm@lovell.info>
# Create Rasbian-based container suitable for compiling Linux ARMv6 binaries
# Requires the QEMU user mode emulation binaries on the host machine
# Build dependencies
RUN \
apt-get update && \
apt-get install -y build-essential curl autoconf libtool nasm gtk-doc-tools texinfo advancecomp libglib2.0-dev
# Compiler settings
ENV \
PLATFORM=linux-armv6 \
FLAGS="-Os"