summaryrefslogtreecommitdiff
path: root/vido/Makefile
diff options
context:
space:
mode:
authorDavid Kühling <dvdkhlng@gmx.de>2010-09-18 20:47:21 +0200
committerDavid Kühling <dvdkhlng@gmx.de>2010-09-18 20:47:21 +0200
commit4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09 (patch)
tree58590463ada82a27eca0889312c32450358249a8 /vido/Makefile
downloadqipackages-fork-4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09.tar.gz
Major overhaul and cleanup. Support for .ubi image file installations.grafted
Only compile&install a minimum host Gforth for bootstrapping the target Gforth, removing strange emacs-dependencies that cropped up earlier. Image file can now be built on the nanonote using 'gforth-update-image' command. Also, Gforth is now run through a wrapper that calls 'gforth-update-image' automatically, if necessary. Also first attempts at supporting libcc C-interface libraries pre-compiled on the host. Tested to compile on amd64 and i386.
Diffstat (limited to 'vido/Makefile')
-rw-r--r--vido/Makefile63
1 files changed, 63 insertions, 0 deletions
diff --git a/vido/Makefile b/vido/Makefile
new file mode 100644
index 0000000..dd90438
--- /dev/null
+++ b/vido/Makefile
@@ -0,0 +1,63 @@
+#
+# Copyright (C) 2009 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=vido
+PKG_VERSION:=20100326
+PKG_REV:=c544a52e18c5aae130002d05aca62940ba744597
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=git://projects.qi-hardware.com/vido.git
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE_VERSION:=$(PKG_REV)
+
+PKG_INSTALL:=1
+
+include $(INCLUDE_DIR)/package.mk
+
+TARGET_CFLAGS+= \
+ -I$(STAGING_DIR)/usr/lib/libintl/include \
+ -I$(STAGING_DIR)/usr/libiconv/include
+
+TARGET_LDFLAGS+= \
+ -Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
+ -L$(STAGING_DIR)/usr/lib/libintl/lib \
+ -L$(STAGING_DIR)/usr/lib/libiconv/lib
+
+define Package/vido
+ SECTION:=xorg-apps
+ CATEGORY:=Xorg
+ SUBMENU:=app
+ TITLE:=Vido
+ URL:=http://projects.qi-hardware.com/index.php/p/vido/
+ DEPENDS:=+gtkhtml +gtkmm +zimlib
+endef
+
+define Build/Configure
+ ( cd $(PKG_BUILD_DIR); ./autogen.sh );
+ $(call Build/Configure/Default)
+endef
+
+define Package/vido/install
+ $(INSTALL_DIR) \
+ $(1)/usr/bin \
+ $(1)/usr/share/applications \
+ $(1)/usr/share/pixmaps
+
+ $(INSTALL_BIN) \
+ $(PKG_INSTALL_DIR)/usr/bin/vido \
+ $(1)/usr/bin/
+
+ #$(INSTALL_DATA) \
+ # $(PKG_INSTALL_DIR)/usr/share/applications/vido.desktop \
+ # $(1)/usr/share/applications/
+endef
+
+$(eval $(call BuildPackage,vido))