#
|
|
# Copyright (C) 2018-2019 Michael Heimpold <mhei@heimpold.de>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libgpiod
|
|
PKG_VERSION:=1.4.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=@KERNEL/software/libs/libgpiod/
|
|
PKG_HASH:=f1cda2789e6a13a92aefc012a76e5a7cc57a1b402d66f71df8719ee314b67699
|
|
|
|
PKG_MAINTAINER:=Michael Heimpold <mhei@heimpold.de>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PYTHON3_PKG_BUILD:=0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/python/python3-package.mk
|
|
|
|
ifneq ($(CONFIG_PACKAGE_gpiod-tools),)
|
|
CONFIGURE_ARGS += --enable-tools
|
|
endif
|
|
|
|
ifneq ($(CONFIG_PACKAGE_python3-gpiod),)
|
|
CONFIGURE_ARGS += --enable-bindings-python
|
|
CONFIGURE_VARS += \
|
|
PYTHON="$(STAGING_DIR_HOSTPKG)/bin/$(PYTHON3)" \
|
|
PYTHON_CPPFLAGS="$(shell $(STAGING_DIR)/host/bin/$(PYTHON3)-config --includes)" \
|
|
PYTHON_LIBS="$(shell $(STAGING_DIR)/host/bin/$(PYTHON3)-config --libs)"
|
|
endif
|
|
|
|
define Package/libgpiod
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
URL:=https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git
|
|
TITLE:=Library for interacting with Linux's GPIO character device
|
|
DEPENDS:=@GPIO_SUPPORT
|
|
endef
|
|
|
|
define Package/libgpiod/description
|
|
C library for interacting with the linux GPIO character device
|
|
(gpiod stands for GPIO device).
|
|
endef
|
|
|
|
define Package/gpiod-tools
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
TITLE:=Tools for interacting with GPIO pins
|
|
DEPENDS:=+libgpiod
|
|
endef
|
|
|
|
define Package/gpiod-tools/description
|
|
Tools for interacting with the linux GPIO character device
|
|
(gpiod stands for GPIO device).
|
|
endef
|
|
|
|
define Package/python3-gpiod
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Python bindings for libgpiod
|
|
URL:=https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git
|
|
DEPENDS:=+python3-light +libgpiod
|
|
endef
|
|
|
|
define Package/python3-gpiod/description
|
|
This package contains the Python bindings for libgpiod.
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/gpiod.h $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgpiod.{so*,a} $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libgpiod.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/libgpiod/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgpiod.so.* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/gpiod-tools/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
|
endef
|
|
|
|
define Package/python3-gpiod/install
|
|
$(INSTALL_DIR) $(1)/$(PYTHON3_PKG_DIR)
|
|
$(CP) $(PKG_INSTALL_DIR)/$(PYTHON3_PKG_DIR)/gpiod.so $(1)/$(PYTHON3_PKG_DIR)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libgpiod))
|
|
$(eval $(call BuildPackage,gpiod-tools))
|
|
$(eval $(call BuildPackage,python3-gpiod))
|