mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-19 01:35:30 +08:00
52 lines
1.0 KiB
Makefile
52 lines
1.0 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-haproxy-tcp
|
|
PKG_VERSION=1.4
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=Alex Zhuo <1886090@gmail.com>
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/$(PKG_NAME)
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Luci
|
|
TITLE:=luci for haproxy and shadowsocks
|
|
PKGARCH:=all
|
|
DEPENDS:=+haproxy
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
A luci app for haproxy with shadowsocks
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/postinst
|
|
#!/bin/sh
|
|
rm -rf /tmp/luci*
|
|
echo stopping haproxy
|
|
/etc/init.d/haproxy stop
|
|
/etc/init.d/haproxy disable
|
|
echo haproxy disabled
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(foreach po,$(wildcard ${CURDIR}/i18n/zh-cn/*.po), \
|
|
po2lmo $(po) $(PKG_BUILD_DIR)/$(patsubst %.po,%.lmo,$(notdir $(po)));)
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/i18n
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/*.*.lmo $(1)/usr/lib/lua/luci/i18n/
|
|
$(CP) ./files/* $(1)/
|
|
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|