mirror of
https://github.com/kenzok8/small-package
synced 2025-01-07 07:06:58 +08:00
76 lines
2.4 KiB
Makefile
76 lines
2.4 KiB
Makefile
# MIT License
|
|
#
|
|
# Copyright (c) 2020 vinewx
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
# The file included below defines PYTHON_VERSION
|
|
include $(TOPDIR)/feeds/packages/lang/python/python3-version.mk
|
|
|
|
PKG_NAME:=nanohatoled
|
|
PKG_VERSION:=1.0.4
|
|
PKG_RELEASE:=1
|
|
PKG_DATE:=20200528
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_MAINTAINER:=vinewx <https://github.com/vinewx/NanoHatOLED>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/$(PKG_NAME)
|
|
TITLE:=Support for NanoHatOLED.
|
|
PKGARCH:=all
|
|
DEPENDS:=+i2c-tools +python3-pillow +python3-smbus
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
OpenWrt OLED display for NanoHatOLED.
|
|
endef
|
|
|
|
define Build/Prepare
|
|
sed -i "s/3.x/$(PYTHON3_VERSION)/g" ./src/main.c
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/nanohatoled $(1)/etc/init.d/nanohatoled
|
|
$(INSTALL_DIR) $(1)/usr/share/NanoHatOLED
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/NanoHatOLED $(1)/usr/share/NanoHatOLED/
|
|
$(CP) ./files/NanoHatOLED/* $(1)/usr/share/NanoHatOLED
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/postinst
|
|
#!/bin/sh
|
|
if [ -z "$${IPKG_INSTROOT}" ]; then
|
|
/etc/init.d/nanohatoled enable
|
|
fi
|
|
exit 0
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/postrm
|
|
#!/bin/sh
|
|
rm -rf /usr/share/NanoHatOLED >/dev/null 2>&1
|
|
exit 0
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|