mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-05 05:35:20 +02:00
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=qball
|
|
PKG_VERSION:=1.3
|
|
PKG_RELEASE:=1
|
|
PKG_SOURCE_URL:=http://homepage.ntlworld.com/mark.harman/
|
|
PKG_SOURCE:=qball_src.zip
|
|
PKG_MD5SUM:=78231c3ae743d6b4e92726125efec448
|
|
UNZIP_CMD=unzip -d $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/QBall
|
|
|
|
$(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
|
|
|
|
TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
define Package/qball/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/QBall $(1)/usr/bin/qball
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,qball))
|