From 99c164e155870e3d28f821101184d1ef266a1dd9 Mon Sep 17 00:00:00 2001 From: Xiangfu Liu Date: Wed, 2 Nov 2011 14:19:15 +0800 Subject: [PATCH] new package tinygl: @BROKEN depends on X11 --- tinygl/Makefile | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 tinygl/Makefile diff --git a/tinygl/Makefile b/tinygl/Makefile new file mode 100644 index 0000000..5798423 --- /dev/null +++ b/tinygl/Makefile @@ -0,0 +1,52 @@ +# +# Copyright (C) Xiangfu Liu +# +# License GPLv2 or later. NO WARRANTY. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=tinygl +PKG_VERSION:=0.4 +PKG_SOURCE:=TinyGL-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://bellard.org/TinyGL/ +PKG_RELEASE:=1 +PKG_INSTALL:=1 +PKG_BUILD_DIR:=$(BUILD_DIR)/TinyGL + +include $(INCLUDE_DIR)/package.mk + +define Package/tinygl + TITLE:=Tinygl + SECTION:=utils + CATEGORY:=Utilities + URL:=http://bellard.org/TinyGL/ + DEPENDS:=@BROKEN +#depends on X11 +endef + +define Package/tinygl/description +endef + +define Build/Configure + $(call Build/Configure/Default) +endef + +define Build/Compile + $(call Build/Compile/Default) +endef + +define Build/Install + $(call Build/Install/Default) +endef + +define Package/tinygl/install + $(INSTALL_DIR) /usr/bin/ +endef + +$(eval $(call BuildPackage,tinygl)) + +# The following comments configure the Tinygl editor. Just ignore them. +# Local Variables: +# compile-command: "make -C ~/openwrt-xburst.full_system package/tinygl/{clean,compile} V=99" +# End: