mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2025-12-10 07:44:50 +01:00
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=btle_alarm
|
|
PKG_VERSION:=1.0.6
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/btle_alarm-utils-$(PKG_VERSION)
|
|
PKG_SOURCE:=btle_alarm-utils-$(PKG_VERSION).tar.gz
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/btle_alarm
|
|
SECTION:=base
|
|
CATEGORY:=Utillities
|
|
TITLE:=Ethernet bridging configuration utility
|
|
#DESCRIPTION:=This variable is obsolete. use the Package/name/description define instead!
|
|
URL:=http://btle_alarm.sourceforge.net/
|
|
DEPENDS:=+bluez +libncurses
|
|
endef
|
|
|
|
define Package/btle_alarm/description
|
|
Ethernet bridging configuration utility
|
|
Manage ethernet bridging; a way to connect networks together to
|
|
form a larger network.
|
|
endef
|
|
define Build/Prepare
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
$(CP) ./src/* $(PKG_BUILD_DIR)/
|
|
endef
|
|
|
|
define Package/btle_alarm/install
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/btle_alarm $(1)/sbin/
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config/
|
|
$(INSTALL_DATA) ./files/btle_alarm.conf $(1)/etc/config/btle_alarm
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/etc/init.d/* $(1)/etc/init.d/
|
|
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,btle_alarm))
|