Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.29 KB | None | 0 0
  1. FROM debian:jessie
  2. MAINTAINER Wynter Woods
  3. # First, run wget http://opensource.nextthing.co/chippian/rootfs/i386.rootfs.tar.gz
  4. ADD i386.rootfs.tar.gz /
  5.  
  6. RUN apt-get update
  7. RUN apt-get install -y wget
  8.  
  9. RUN echo "\ndeb http://ftp.us.debian.org/debian/ jessie main\n" | tee -a /etc/apt/sources.list
  10. RUN echo "deb http://emdebian.org/tools/debian/ jessie main\n" | tee -a /etc/apt/sources.list
  11. RUN wget -qO - http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add -
  12.  
  13. RUN dpkg --add-architecture armhf
  14. RUN apt-get update
  15. RUN apt-get install -y crossbuild-essential-armhf
  16.  
  17. RUN apt-get update --allow-unauthenticated
  18. RUN apt-get install -y --allow-unauthenticated  build-essential \
  19.                         dpkg-dev \
  20.                         debhelper \
  21.                         git-core \
  22.                         vim \
  23.                         python-pip \
  24.                         libx11-dev:armhf \
  25.                         libxrandr-dev:armhf \
  26.                         libxcursor-dev:armhf \
  27.                         libxft-dev:armhf \
  28.                         libxinerama-dev:armhf \
  29.                         libcurl4-openssl-dev:armhf \
  30.                         libc6-dev:armhf \
  31.                         libfreetype6-dev:armhf \
  32.                         python-dev:armhf \
  33.                         bison:armhf \
  34.                         libasound2-dev:armhf \
  35.                         portaudio19-dev:armhf \
  36.                         python-pyaudio:armhf \
  37.                         libi2c-dev:armhf
  38.  
  39. RUN apt-get install -y libnm-glib-dev:armhf network-manager-dev:armhf
  40. RUN apt-get install -y libasound2-dev:armhf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement