12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #
- # Copyright (C) 2006-2010 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- # Initial port of shellinabox to OpenWrt - Jan Jaeger 25-MAR-2010
- include $(TOPDIR)/rules.mk
- PKG_NAME:=shellinabox
- PKG_VERSION:=2.10
- PKG_RELEASE:=1
- PKG_SOURCE_PROTO:=git
- PKG_SOURCE_VERSION:=HEAD
- PKG_SOURCE_URL:=https://github.com/OnionIoT/shellinabox.git
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)
- PKG_SOURCE:=$(PKG_NAME).tar.gz
- PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
- #PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- #PKG_SOURCE_URL:=http://shellinabox.googlecode.com/files
- #PKG_MD5SUM:=0e144910d85d92edc54702ab9c46f032
- include $(INCLUDE_DIR)/package.mk
- define Package/shellinabox
- SECTION:=net
- CATEGORY:=Network
- TITLE:=Shell In A Box
- DEPENDS:= zlib
- URL:=http://shellinabox.googlecode.com
- endef
- define Package/shellinabox/description
- Web based AJAX terminal emulator
- endef
- define Build/Configure
- $(call Build/Configure/Default)
- endef
- define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) \
- $(TARGET_CONFIGURE_OPTS) \
- CFLAGS="$(TARGET_CFLAGS)" \
- BINDIR="/usr/sbin" \
- all
- endef
- define Package/shellinabox/install
- # install the binary
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_BUILD_DIR)/shellinaboxd $(1)/usr/sbin/
- # install the init.d file
- $(INSTALL_DIR) $(1)/etc/init.d
- $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
- # install the css file
- $(INSTALL_DIR) $(1)/usr/lib/shellinabox
- $(INSTALL_BIN) ./files/style.css $(1)/usr/lib/shellinabox/style.css
- endef
- $(eval $(call BuildPackage,shellinabox))
|