-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tianling Shen <[email protected]>
- Loading branch information
1 parent
3f549ea
commit 118f75e
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# | ||
# Copyright (C) 2018-2019 wongsyrone | ||
# | ||
# This is free software, licensed under the GNU General Public License v3. | ||
# See /LICENSE for more information. | ||
# | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=trojan | ||
PKG_VERSION:=1.16.0 | ||
PKG_RELEASE:=2 | ||
|
||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz | ||
PKG_SOURCE_URL:=https://codeload.github.com/trojan-gfw/trojan/tar.gz/v$(PKG_VERSION)? | ||
PKG_HASH:=86cdb2685bb03a63b62ce06545c41189952f1ec4a0cd9147450312ed70956cbc | ||
|
||
PKG_BUILD_PARALLEL:=1 | ||
PKG_BUILD_DEPENDS:=openssl | ||
|
||
PKG_LICENSE:=GPL-3.0 | ||
PKG_LICENSE_FILE:=LICENSE | ||
PKG_MAINTAINER:=GreaterFire | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
include $(INCLUDE_DIR)/cmake.mk | ||
|
||
TARGET_CXXFLAGS += -Wall -Wextra | ||
TARGET_CXXFLAGS += $(FPIC) | ||
|
||
# LTO | ||
TARGET_CXXFLAGS += -flto | ||
TARGET_LDFLAGS += -flto | ||
|
||
# CXX standard | ||
TARGET_CXXFLAGS += -std=c++11 | ||
TARGET_CXXFLAGS := $(filter-out -O%,$(TARGET_CXXFLAGS)) -O3 | ||
TARGET_CXXFLAGS += -ffunction-sections -fdata-sections | ||
TARGET_LDFLAGS += -Wl,--gc-sections | ||
|
||
CMAKE_OPTIONS += \ | ||
-DENABLE_MYSQL=OFF \ | ||
-DENABLE_NAT=ON \ | ||
-DENABLE_REUSE_PORT=ON \ | ||
-DENABLE_SSL_KEYLOG=ON \ | ||
-DENABLE_TLS13_CIPHERSUITES=ON \ | ||
-DFORCE_TCP_FASTOPEN=OFF \ | ||
-DSYSTEMD_SERVICE=OFF \ | ||
-DOPENSSL_USE_STATIC_LIBS=FALSE \ | ||
-DBoost_DEBUG=ON \ | ||
-DBoost_NO_BOOST_CMAKE=ON | ||
|
||
define Package/trojan | ||
SECTION:=net | ||
CATEGORY:=Network | ||
SUBMENU:=Web Servers/Proxies | ||
TITLE:=An unidentifiable mechanism that helps you bypass GFW | ||
URL:=https://github.com/trojan-gfw/trojan | ||
DEPENDS:= \ | ||
+libpthread +libstdcpp +libopenssl \ | ||
+boost +boost-system +boost-program_options +boost-date_time | ||
endef | ||
|
||
define Package/trojan/install | ||
$(INSTALL_DIR) $(1)/usr/sbin | ||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/trojan $(1)/usr/sbin/trojan | ||
endef | ||
|
||
$(eval $(call BuildPackage,trojan)) |