mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 00:19:20 +02:00
TODO: burgerspace and newsbeuter, add a simple Makefile mark as @BROKEN
This commit is contained in:
parent
441bd7e04b
commit
d78f7f3077
38
burgerspace/Makefile
Normal file
38
burgerspace/Makefile
Normal 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
45
newsbeuter/Makefile
Normal 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))
|
Loading…
Reference in New Issue
Block a user