See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS" on the main repository. Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This fixes it and properly enables LTO. Signed-off-by: Andre Heider <a.heider@gmail.com>
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=microsocks
|
|
PKG_VERSION:=1.0.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/rofl0r/microsocks/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=6801559b6f8e17240ed8eef17a36eea8643412b5a7476980fd4e24b02a021b82
|
|
|
|
PKG_MAINTAINER:=Mateusz Korniak <matkorgithubcom@ant.gliwice.pl>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_BUILD_FLAGS:=lto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/microsocks
|
|
SECTION:=net
|
|
SUBMENU:=Web Servers/Proxies
|
|
CATEGORY:=Network
|
|
TITLE:=SOCKS5 TCP/IP only proxy
|
|
endef
|
|
|
|
define Package/microsocks/description
|
|
Low resource SOCKS5 proxy.
|
|
Supports only SOCKS5 protocol and forwarding only TCP/IP connections.
|
|
endef
|
|
|
|
define Package/microsocks/conffiles
|
|
/etc/config/microsocks
|
|
endef
|
|
|
|
TARGET_LDFLAGS+= -Wl,--gc-sections,--as-needed
|
|
|
|
define Package/microsocks/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/microsocks $(1)/usr/bin
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
$(INSTALL_CONF) ./files/microsocks.config $(1)/etc/config/microsocks
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
$(INSTALL_BIN) ./files/microsocks.init $(1)/etc/init.d/microsocks
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,microsocks))
|