2010-12-14 20:25:16 +02:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=qball
|
2012-10-12 20:40:57 +03:00
|
|
|
PKG_VERSION:=1.4
|
2010-12-14 20:25:16 +02:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=http://homepage.ntlworld.com/mark.harman/
|
|
|
|
PKG_SOURCE:=qball_src.zip
|
2012-10-12 20:40:57 +03:00
|
|
|
PKG_MD5SUM:=137df75bd4c9ec538a9ec19a527ef982
|
2010-12-14 20:25:16 +02:00
|
|
|
UNZIP_CMD=unzip -d $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:14:51 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2010-12-14 20:25:16 +02:00
|
|
|
|
2012-10-12 20:40:57 +03:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/qball_src
|
2010-12-14 20:25:16 +02:00
|
|
|
|
|
|
|
$(call include_mk,qmake.mk)
|
|
|
|
|
|
|
|
define Package/qball
|
|
|
|
SECTION:=games
|
|
|
|
CATEGORY:=Games
|
|
|
|
TITLE:=simple breakout style game
|
|
|
|
DEPENDS:=+qt4 +qt4-gui +dejavu-fonts-ttf
|
|
|
|
URL:=http://homepage.ntlworld.com/mark.harman/comp_qball.html
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Qmake,QBall)
|
|
|
|
endef
|
|
|
|
|
2011-02-22 19:10:31 +02:00
|
|
|
TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
|
2010-12-14 20:25:16 +02:00
|
|
|
define Package/qball/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/QBall $(1)/usr/bin/qball
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,qball))
|