a04d81a40e
git-svn-id: svn://svn.openwrt.org/openwrt/packages@29168 3c298f89-4303-0410-b956-a3cf2f4a3e73
70 lines
2.2 KiB
Makefile
70 lines
2.2 KiB
Makefile
#
|
|
# Copyright (C) 2011 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:=quicktun
|
|
PKG_VERSION:=2.1.7
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=http://oss.ucis.nl/quicktun/src
|
|
PKG_MD5SUM:=6cf38b17218deb8c908cc17d91f9cbd7
|
|
|
|
PKG_BUILD_DEPENDS:=nacl
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/quicktun
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+kmod-tun
|
|
TITLE:=QuickTun is a simple and secure VPN software
|
|
URL:=http://wiki.ucis.nl/QuickTun
|
|
SUBMENU:=VPN
|
|
endef
|
|
|
|
define Package/quicktun/description
|
|
QuickTun is a simple and secure VPN software
|
|
endef
|
|
|
|
define Package/quicktun/conffiles
|
|
/etc/config/quicktun
|
|
endef
|
|
|
|
define Build/Compile
|
|
( \
|
|
cd $(PKG_BUILD_DIR); \
|
|
mkdir -p obj out; \
|
|
\
|
|
export CPATH=$(STAGING_DIR)/usr/include/nacl; \
|
|
\
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -c -DCOMBINED_BINARY src/proto.raw.c -o obj/proto.raw.o; \
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -c -DCOMBINED_BINARY src/proto.nacl0.c -o obj/proto.nacl0.o; \
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -c -DCOMBINED_BINARY src/proto.nacltai.c -o obj/proto.nacltai.o; \
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -c -DCOMBINED_BINARY src/run.combined.c -o obj/run.combined.o; \
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -c src/common.c -o obj/common.o; \
|
|
$(TARGET_CC) $(TARGET_LDFLAGS) -o out/quicktun.combined obj/common.o obj/run.combined.o obj/proto.raw.o obj/proto.nacl0.o obj/proto.nacltai.o \
|
|
-lnacl; \
|
|
\
|
|
$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(TARGET_LDFLAGS) -o out/quicktun.keypair src/keypair.c -lnacl \
|
|
)
|
|
endef
|
|
|
|
define Package/quicktun/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/out/quicktun.{combined,keypair} $(1)/usr/sbin/
|
|
$(LN) quicktun.combined $(1)/usr/sbin/quicktun
|
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
$(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,quicktun))
|