new package: libfixgl: an implementation of the OpenGL standard for realtime 3D graphics, based on fixed point arithmetic

This commit is contained in:
Xiangfu Liu 2011-11-02 16:22:29 +08:00
parent 99c164e155
commit e0051768c5
2 changed files with 68 additions and 2 deletions

66
libfixgl/Makefile Normal file
View File

@ -0,0 +1,66 @@
#
# Copyright (C) Xiangfu Liu <xiangfu@sharism.cc>
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=libfixgl
PKG_REV:=17
PKG_VERSION:=r$(PKG_REV)
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=svn
PKG_SOURCE_VERSION:=$(PKG_REV)
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://libfixgl.svn.sourceforge.net/svnroot/libfixgl
PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
include $(INCLUDE_DIR)/package.mk
define Package/libfixgl
MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
SECTION:=libs
CATEGORY:=Libraries
TITLE:=Libfixgl
URL:=http://code.google.com/p/libfixgl/
DEPENDS:=+libsdl +libpng
endef
define Package/libfixgl/description
libfixgl, is an implementation of the OpenGL standard for realtime 3D graphics, based on fixed point arithmetic.
endef
define Build/Compile
$(call Build/Compile/Default)
(cd $(PKG_BUILD_DIR)/example/lord/; \
make CC="$(TARGET_CC)" \
CFLAGS="\
$(TARGET_CFLAGS) \
-std=gnu89 -pedantic -Wall \
-I../../src \
`$(SDL_CONFIG) --cflags` \
-I$(STAGING_DIR)/usr/include \
-I$(STAGING_DIR)/usr/include/SDL" \
LDFLAGS="$(TARGET_LDFLAGS) \
`$(SDL_CONFIG) --libs` \
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
-L$(STAGING_DIR)/usr/lib/SDL \
-lm -lpng -lz -lpthread -lSDL -ldirectfb -lfusion")
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/lib/libfixgl/include
$(INSTALL_DATA) $(PKG_BUILD_DIR)/libGL.a $(1)/usr/lib/libfixgl/
$(CP) $(PKG_BUILD_DIR)/src/*.h $(1)/usr/lib/libfixgl/include
endef
define Package/libfixgl/install
$(INSTALL_DIR) $(1)/usr/lib/libfixgl
$(INSTALL_DATA) $(PKG_BUILD_DIR)/libGL.a $(1)/usr/lib/libfixgl/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/example/lord/example $(1)/usr/lib/libfixgl/
endef
$(eval $(call BuildPackage,libfixgl))

View File

@ -1,7 +1,7 @@
#
# Copyright (C) Xiangfu Liu <xiangfu@sharism.cc>
#
# License GPLv2 or later. NO WARRANTY.
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk