You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

105 lines
2.9 KiB

#
# Copyright (C) 2012-2018 Karl Palsson <karlp@tweak.net.au>
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=pagekitec
PKG_REV:=0.91.201110
PKG_VERSION:=$(PKG_REV)C
PKG_RELEASE:=2
PKG_LICENSE:=Apache-2.0
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_MIRROR_HASH:=101f5a913f0bbb0c06b0799a5020988a7eeb108a4fcd1a45697538cf51caee2e
PKG_SOURCE_URL:=https://github.com/pagekite/libpagekite.git
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=v$(PKG_REV)
include $(INCLUDE_DIR)/package.mk
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
CONFIGURE_ARGS += --without-java
define Package/pagekitec/default
SECTION:=net
CATEGORY:=Network
TITLE:=Make localhost servers publicly visible.
URL:=https://pagekite.net/wiki/Floss/LibPageKite/
MAINTAINER:= Karl Palsson <karlp@tweak.net.au>
DEPENDS:=+libopenssl +libpthread +libev
endef
define Package/libpagekite
$(call Package/pagekitec/default)
SECTION:=libs
CATEGORY:=Libraries
TITLE+= (library)
endef
define Package/pagekitec
$(call Package/pagekitec/default)
DEPENDS:=+libpagekite
endef
define Package/pagekitec/default/description
PageKite is a system for running publicly visible servers (generally
web servers) on machines without a direct connection to the Internet,
such as mobile devices or computers behind restrictive firewalls.
PageKite works around NAT, firewalls and IP-address limitations by
using a combination of tunnels and reverse proxies.
This package provides an implementation of the PageKite Protocol in C,
optimized for high-performance or embedded applications.
endef
define Package/libpagekite/description
$(call Package/pagekitec/default/description)
This package contains the core library
endef
define Package/pagekitec/description
$(call Package/pagekitec/default/description)
This package contains a basic backend useful for exposing http/ssh servers.
Basic UCI support for configuring this backend is also included.
endef
define Package/pagekitec/conffiles
/etc/config/pagekitec
endef
define Build/Configure
(cd $(PKG_BUILD_DIR); ./autogen.sh );
$(call Build/Configure/Default)
endef
#this installs files into ./staging_dir/. so that you can cross compile from the host
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/{include,lib/pkgconfig}
$(CP) $(PKG_INSTALL_DIR)/usr/include/libpagekite/pagekite.h $(1)/usr/include
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpagekite.{a,so*} $(1)/usr/lib/
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig
endef
define Package/libpagekite/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpagekite.so* $(1)/usr/lib
endef
define Package/pagekitec/install
$(CP) ./files/* $(1)/
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pagekitec $(1)/usr/bin
endef
$(eval $(call BuildPackage,pagekitec))
$(eval $(call BuildPackage,libpagekite))