TODO: burgerspace and newsbeuter, add a simple Makefile mark as @BROKEN

This commit is contained in:
Xiangfu Liu 2012-02-06 17:01:00 +08:00
parent 441bd7e04b
commit d78f7f3077
2 changed files with 83 additions and 0 deletions

38
burgerspace/Makefile Normal file
View File

@ -0,0 +1,38 @@
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=burgerspace
PKG_VERSION:=1.9.0
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-current.tar.gz
PKG_SOURCE_URL:=http://perso.b2b2c.ca/sarrazip/dev/
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/burgerspace
TITLE:=burgerspace
URL:=http://perso.b2b2c.ca/sarrazip/dev/burgerspace.html
DEPENDS:=+libsdl +libsdl-ttf @BROKEN
endef
define Package/burgerspace/description
a hamburger-smashing video game. It is a clone of the 1982 BurgerTime video game by Data East.
endef
CONFIGURE_ARGS +=
TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/SDL
TARGET_LDFLAGS+= -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
define Package/burgerspace/install
$(INSTALL_DIR) $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/burgerspace $(1)/usr/bin/
endef
$(eval $(call BuildPackage,burgerspace))

45
newsbeuter/Makefile Normal file
View File

@ -0,0 +1,45 @@
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=newsbeuter
PKG_VERSION:=2.5
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://newsbeuter.org/downloads/
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
define Package/newsbeuter
MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
SECTION:=network
CATEGORY:=Network
TITLE:=newsbeuter
URL:=http://newsbeuter.org/index.html
DEPENDS:= @BROKEN
endef
define Package/newsbeuter/description
Newsbeuter is an open-source RSS/Atom feed reader for text terminals.
It runs on Linux, FreeBSD, Mac OS X and other Unix-like operating systems.
Newsbeuter's great configurability and vast number of features make it a
perfect choice for people that need a slick and fast feed reader that can
be completely controlled via keyboard.
endef
CONFIGURE_ARGS +=
TARGET_CFLAGS +=
TARGET_LDFLAGS+= -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
define Package/newsbeuter/install
$(INSTALL_DIR) $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/newsbeuter $(1)/usr/bin/
endef
$(eval $(call BuildPackage,newsbeuter))