Root/fbterm/Makefile

1#
2# This is free software, licensed under the GNU General Public License v2.
3#
4
5include $(TOPDIR)/rules.mk
6
7PKG_NAME:=fbterm
8PKG_VERSION:=1.6
9PKG_RELEASE:=1
10
11PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12PKG_SOURCE_URL:=http://fbterm.googlecode.com/files/
13PKG_MD5SUM:=531ea0984836b58fd123e6a97a4228c6
14
15include $(INCLUDE_DIR)/package.mk
16
17define Package/fbterm
18  SECTION:=utils
19  CATEGORY:=Utilities
20  TITLE:=FbTerm, a fast FrameBuffer based TERMinal emulator for linux
21  URL:=http://code.google.com/p/fbterm/
22  SUBMENU:=Terminal
23  DEPENDS:=+libiconv +fontconfig +unifont +libstdcpp
24endef
25
26define Package/fbterm/description
27  FbTerm is a fast terminal emulator for linux with frame buffer device
28endef
29
30TARGET_CFLAGS+= \
31        -I$(STAGING_DIR)/usr/lib/libiconv/include
32
33TARGET_LDFLAGS+= \
34        -Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
35        -L$(STAGING_DIR)/usr/lib/libiconv/lib -liconv
36
37define Package/fbterm/install
38    $(INSTALL_DIR) \
39        $(1)/usr/bin
40
41    $(INSTALL_BIN) \
42        $(PKG_BUILD_DIR)/src/fbterm \
43        $(1)/usr/bin/fbterm
44
45endef
46
47$(eval $(call BuildPackage,fbterm))
48

Archive Download this file



interactive