Merge pull request #37 from adafruit/libgpiod

add @ladyada's libgpiod install instrux to script
This commit is contained in:
Limor "Ladyada" Fried 2018-11-13 09:58:05 -08:00 committed by GitHub
commit ee2e7688b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

46
libgpiod.sh Executable file
View file

@ -0,0 +1,46 @@
#!/bin/sh
# Instructions!
# cd ~
# wget https://raw.githubusercontent.com/adafruit/Raspberry-Pi-Installer-Scripts/master/libgpiod.sh
# chmod +x libgpiod.sh
# ./adafruit-pitft.sh
echo "Installing build requirements - this may take a few minutes!"
echo
sudo apt-get update && sudo apt-get install -y \
autoconf \
autoconf-archive \
automake \
build-essential \
git \
libtool \
pkg-config \
python3 \
python3-dev \
python3-setuptools \
raspberrypi-kernel-headers \
swig3.0 \
wget
build_dir=`mktemp -d /tmp/libgpiod.XXXX`
echo "Cloning libgpiod repository to $build_dir"
echo
cd "$build_dir"
git clone git://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git .
echo "Building libgpiod"
echo
include_path=`python3 -c "from sysconfig import get_paths; print(get_paths()['include'])"`
export PYTHON_VERSION=3
./autogen.sh --enable-tools=yes --prefix=/usr/local/ --enable-bindings-python CFLAGS="-I/$include_path" \
&& make \
&& sudo make install \
&& sudo ldconfig
exit 0