mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
55 lines
1.8 KiB
Makefile
55 lines
1.8 KiB
Makefile
################################################################################
|
|
# This file is part of LibreELEC - https://libreelec.tv
|
|
# Copyright (C) 2016 Team LibreELEC
|
|
#
|
|
# LibreELEC is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# LibreELEC is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with LibreELEC. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
PKG_NAME="Adafruit_Python_DHT"
|
|
PKG_VERSION="da8cddf"
|
|
PKG_SHA256="ad5a0ca0d8c99caedd9db5c1015fc40635c5441e3b923a2dfecc27933622af8d"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/adafruit/${PKG_NAME}"
|
|
PKG_URL="https://github.com/adafruit/${PKG_NAME}/archive/$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain Python distutilscross:host"
|
|
PKG_SECTION="python"
|
|
PKG_SHORTDESC="Adafruit Python DHT Library"
|
|
PKG_LONGDESC="Python library to read the DHT series of humidity and temperature sensors on a Raspberry Pi or Beaglebone Black."
|
|
PKG_AUTORECONF="no"
|
|
|
|
case "$PROJECT:$DEVICE" in
|
|
"RPi:RPi")
|
|
RPI_VERSION="--force-pi"
|
|
;;
|
|
"RPi:RPi2")
|
|
RPI_VERSION="--force-pi2"
|
|
;;
|
|
*)
|
|
RPI_VERSION=""
|
|
esac
|
|
|
|
pre_make_target() {
|
|
export PYTHONXCPREFIX="$SYSROOT_PREFIX/usr"
|
|
export LDSHARED="$CC -shared"
|
|
}
|
|
|
|
make_target() {
|
|
python setup.py build $RPI_VERSION --cross-compile
|
|
}
|
|
|
|
makeinstall_target() {
|
|
: # nop
|
|
}
|