f907dabbe7
git-svn-id: svn://svn.openwrt.org/openwrt/packages@15480 3c298f89-4303-0410-b956-a3cf2f4a3e73
73 lines
1.6 KiB
Makefile
73 lines
1.6 KiB
Makefile
#
|
|
# Copyright (C) 2006-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:=iodine
|
|
PKG_VERSION:=0.5.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://code.kryo.se/iodine/
|
|
PKG_MD5SUM:=af2d9062b7788fc47385d8c6c645dfa0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/iodine/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+zlib +kmod-tun
|
|
TITLE:=IP over DNS tunneling
|
|
URL:=http://code.kryo.se/iodine/
|
|
endef
|
|
|
|
define Package/iodine
|
|
$(call Package/iodine/Default)
|
|
TITLE+= client version
|
|
endef
|
|
|
|
define Package/iodine/description
|
|
iodine client version
|
|
endef
|
|
|
|
define Package/iodined
|
|
$(call Package/iodine/Default)
|
|
TITLE+= server version
|
|
endef
|
|
|
|
define Package/iodined/description
|
|
iodine server version
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,\
|
|
CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -c -DLINUX" \
|
|
LDFLAGS="$(TARGET_LDFLAGS) -lz" \
|
|
all \
|
|
)
|
|
endef
|
|
|
|
define Package/iodine/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/iodine $(1)/usr/sbin
|
|
endef
|
|
|
|
define Package/iodined/install
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/iodined.init $(1)/etc/init.d/iodined
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_DATA) ./files/iodined.config $(1)/etc/config/iodined
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/iodined $(1)/usr/sbin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,iodine))
|
|
$(eval $(call BuildPackage,iodined))
|