1e28de24b4
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19705 3c298f89-4303-0410-b956-a3cf2f4a3e73
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=faifa
|
|
PKG_REV:=50
|
|
PKG_VERSION:=r$(PKG_REV)
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://svn.open-plc.org/trunk/
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=$(PKG_REV)
|
|
PKG_SOURCE_PROTO:=svn
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/faifa
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpthread +libopenssl +libpcap
|
|
TITLE:=configure HomePlug 1.0/AV PLC devices
|
|
URL:=http://open-plc.org
|
|
endef
|
|
|
|
define Package/faifa/description
|
|
Faifa can configure any Intellon-based Power Line Communication
|
|
device using Intellon INT5000 and INT6000 series chips
|
|
(6000 and 6300 chips). It supports all Intellon-specific management
|
|
and control frames as well as standard management frames.
|
|
endef
|
|
|
|
define Build/Configure
|
|
(cd $(PKG_BUILD_DIR); ./autogen.sh)
|
|
$(call Build/Configure/Default)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS) -DSVN_REV=$(PKG_REV) $(TARGET_CPPFLAGS)" \
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
faifa
|
|
endef
|
|
|
|
define Package/faifa/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(CP) $(PKG_BUILD_DIR)/faifa $(1)/usr/sbin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,faifa))
|