1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-10-01 11:38:33 +03:00

Merge branch 'master' of git@projects.qi-hardware.com:openwrt-packages

This commit is contained in:
Xiangfu Liu 2010-03-03 00:35:38 +08:00
commit f7c7751fd7
3 changed files with 51 additions and 3 deletions

36
bwbasic/Makefile Normal file
View File

@ -0,0 +1,36 @@
# This is free software, licensed under the GNU General Public License
# v3. See /LICENSE for more information.
include $(TOPDIR)/rules.mk
PKG_NAME:=bwbasic
PKG_VERSION:=master
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=http://pyneo.org/t
PKG_MD5SUM:=8d42bb36260bfa276a1ca065bf464355
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/bwbasic
SECTION:=utilites
CATEGORY:=Utilities
TITLE:=An bwbasic application
URL:=http://pyneo.org/t/bwbasic
DEPENDS:=+libncurses
endef
#DEPENDS:=+libreadline +libtermcap
define Package/bwbasic/description
A bwbasic application
endef
define Package/bwbasic/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) \
$(PKG_INSTALL_DIR)/usr/bin/bwbasic \
$(1)/usr/bin/
endef
$(eval $(call BuildPackage,bwbasic))

View File

@ -63,7 +63,7 @@ define Package/gmenu2x/install
$(PKG_INSTALL_DIR)/usr/bin/gmenu2x \
$(1)/usr/share/gmenu2x/
$(CP) \
$(INSTALL_BIN) \
$(PKG_BUILD_DIR)/gmenu2x.sh \
$(1)/usr/bin/gmenu2x

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=libsdl-ttf
PKG_VERSION:=2.0.9
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=SDL_ttf-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.libsdl.org/projects/SDL_ttf/release/
@ -32,7 +32,19 @@ define Package/libsdl-ttf/description
SDL_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. It depends on freetype2 to handle the TrueType font data. It allows a programmer to use multiple TrueType fonts without having to code a font rendering routine themselves. With the power of outline fonts and antialiasing, high quality text output can be obtained without much effort.
endef
CONFIGURE_ARGS += --without-x
PKG_FIXUP:=libtool
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/SDL
CONFIGURE_ARGS += \
--with-sdl-exec-prefix=$(STAGING_DIR) \
--without-x \
LIBS="-lSDL"
TARGET_LDFLAGS+= \
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
-L$(STAGING_DIR)/usr/lib/libintl/lib \
-L$(STAGING_DIR)/usr/lib/libiconv/lib
define Build/InstallDev
$(INSTALL_DIR) \