OpenWrt packages
Sign in or create your account | Project List | Help
OpenWrt packages Git Source Tree
Root/
| 1 | # |
| 2 | # This is free software, licensed under the GNU General Public License v2. |
| 3 | # See /LICENSE for more information. |
| 4 | |
| 5 | include $(TOPDIR)/rules.mk |
| 6 | |
| 7 | PKG_NAME:=directvnc |
| 8 | PKG_VERSION:=0.7.7 |
| 9 | PKG_RELEASE:=1 |
| 10 | |
| 11 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
| 12 | PKG_SOURCE_URL:=https://github.com/downloads/drinkmilk/directvnc |
| 13 | PKG_MD5SUM:=e30f1a0e45b440443c044148fb62ad6e |
| 14 | PKG_FIXUP:=autoreconf |
| 15 | PKG_INSTALL:=1 |
| 16 | PKG_BUILD_DEPENDS:=libX11 |
| 17 | |
| 18 | include $(INCLUDE_DIR)/package.mk |
| 19 | |
| 20 | define Package/directvnc |
| 21 | TITLE:=client implementing the remote framebuffer protocol (rfb) which is used by VNC servers |
| 22 | SECTION:=utilities |
| 23 | CATEGORY:=Utilities |
| 24 | URL:=http://freecode.com/projects/directvnc |
| 25 | DEPENDS:=+directfb |
| 26 | endef |
| 27 | |
| 28 | define Package/directvnc/description |
| 29 | DirectVNC is a client implementing the remote framebuffer protocol (rfb) which is used by VNC servers. What makes DirectVNC different from other Unix VNC clients is that it uses the Linux framebuffer device through the hardware accelerated DirectFB library, which enables it to run on anything that has a framebuffer without the need for an X server. |
| 30 | endef |
| 31 | |
| 32 | define Package/directvnc/install |
| 33 | $(INSTALL_DIR) $(1)/usr/bin |
| 34 | $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/{directvnc,directvnc-xmapconv} $(1)/usr/bin |
| 35 | endef |
| 36 | |
| 37 | $(eval $(call BuildPackage,directvnc)) |
| 38 |
