Skip to content

Commit

Permalink
allow create pre-built wheezy arm docker w/ dependencies
Browse files Browse the repository at this point in the history
added wheezy armel & armhf binaries, downloaded from https://packages.debian.org/wheezy/{armhf,armel}/{unionfs-fuse,ruby-vte,libvte9,libglade2-0}/download (note: wheezy is oldest debian that has these as binary)

if pass --fetch-dependencies-only to then quit build prematurely before actually compile

added python as apt-get dependency, which is needed if build on a fresh minimal debian wheezy
  • Loading branch information
Eric Fontaine committed Mar 16, 2016
1 parent cf4e2f1 commit 58b03e4
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 2 deletions.
Binary file added binary-dependencies/armv6l/libglade-2.0.so.0
Binary file not shown.
Binary file added binary-dependencies/armv6l/libvte.so.9
Binary file not shown.
Binary file added binary-dependencies/armv6l/unionfs-fuse
Binary file not shown.
Binary file added binary-dependencies/armv6l/vte.so
Binary file not shown.
Binary file added binary-dependencies/armv7l/libglade-2.0.so.0
Binary file not shown.
Binary file added binary-dependencies/armv7l/libvte.so.9
Binary file not shown.
Binary file added binary-dependencies/armv7l/unionfs-fuse
Binary file not shown.
Binary file added binary-dependencies/armv7l/vte.so
Binary file not shown.
8 changes: 6 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ fi

if [ -e /usr/bin/apt-get ] ; then
$SUDO apt-get update
$SUDO apt-get -y install libfuse-dev libglib2.0-dev cmake git libc6-dev binutils fuse

$SUDO apt-get -y install libfuse-dev libglib2.0-dev cmake git libc6-dev binutils fuse python
fi

if [ -e /usr/bin/yum ] ; then
Expand Down Expand Up @@ -54,6 +53,11 @@ if [ -e /usr/bin/pacman ] ; then
done
fi

if [ "$1" == "--fetch-dependencies-only" ] ; then
echo "Fetched dependencies. Exiting now."
exit 0
fi

cd "${HERE}"
cmake .
make clean
Expand Down

0 comments on commit 58b03e4

Please sign in to comment.