# # 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.4 PKG_RELEASE:=1 PKG_SOURCE_URL:=http://homepage.ntlworld.com/mark.harman/ PKG_SOURCE:=qball_src.zip PKG_MD5SUM:=137df75bd4c9ec538a9ec19a527ef982 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_src $(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))