86 lines
2.2 KiB
Makefile
86 lines
2.2 KiB
Makefile
#
|
|
# Copyright (C) 2017-2019 Jian Chang <aa65535@live.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=simple-obfs
|
|
PKG_VERSION:=0.0.5
|
|
PKG_RELEASE:=14
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/shadowsocks/simple-obfs.git
|
|
PKG_MIRROR_HASH:=skip
|
|
PKG_SOURCE_VERSION:=486bebd9208539058e57e23a12f23103016e09b4
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION)
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
|
|
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING LICENSE
|
|
PKG_MAINTAINER:=Jian Chang <aa65535@live.com>
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)/$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION)
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_USE_MIPS16:=0
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_DEPENDS:=libev
|
|
|
|
PKG_CONFIG_DEPENDS:= CONFIG_SIMPLE_OBFS_STATIC_LINK
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/simple-obfs
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=Simple-obfs
|
|
URL:=https://github.com/shadowsocks/simple-obfs
|
|
DEPENDS:=+libpthread +!SIMPLE_OBFS_STATIC_LINK:libev
|
|
endef
|
|
|
|
Package/simple-obfs-server = $(Package/simple-obfs)
|
|
|
|
define Package/simple-obfs-server/config
|
|
menu "Simple-obfs Compile Configuration"
|
|
depends on PACKAGE_simple-obfs || PACKAGE_simple-obfs-server
|
|
config SIMPLE_OBFS_STATIC_LINK
|
|
bool "enable static link libraries."
|
|
default n
|
|
endmenu
|
|
endef
|
|
|
|
define Package/simple-obfs/description
|
|
Simple-obfs is a simple obfusacting tool, designed as plugin server of shadowsocks.
|
|
endef
|
|
|
|
Package/simple-obfs-server/description = $(Package/simple-obfs/description)
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-ssp \
|
|
--disable-documentation \
|
|
--disable-assert
|
|
|
|
ifeq ($(CONFIG_SIMPLE_OBFS_STATIC_LINK),y)
|
|
CONFIGURE_ARGS += \
|
|
--with-ev="$(STAGING_DIR)/usr" \
|
|
LDFLAGS="-Wl,-static -static -static-libgcc"
|
|
endif
|
|
|
|
define Package/simple-obfs/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/obfs-local $(1)/usr/bin
|
|
endef
|
|
|
|
define Package/simple-obfs-server/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/obfs-server $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,simple-obfs))
|
|
$(eval $(call BuildPackage,simple-obfs-server))
|