aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.openwrt
blob: 2c4d21b7fb412607e6d7a2f76d939374a05f2ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
include $(TOPDIR)/rules.mk

PKG_NAME:=i2sensors
PKG_VERSION:=1.0
PKG_RELEASE=$(PKG_SOURCE_VERSION)
PKG_MAINTAINER:=AA <aa@aa.hu>
PKG_LICENSE:=ISC GPL-2.0
## PKG_BUILD_DEPENDS:=+madplay

include $(INCLUDE_DIR)/package.mk

define Package/i2sensors/default
  CATEGORY:=Sensors
  SUBMENU:=I2C Sensors
  TITLE:=Famous I2C Sensors reader
endef

define Package/i2sensors
  $(Package/i2sensors/default)
  ##DEPENDS:=+uhttpd +uhttpd-mod-lua +uhttpd-mod-tls +kmod-sound-core +kmod-usb-audio +alsa-lib
endef

define Package/i2sensors/description
	i2sensors read some i2c devices
endef

define Package/i2sensors/install
	$(CP) ./files/* $(1)/
endef

define Build/Compile
	true
endef

$(eval $(call BuildPackage,webclient))