1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2025-04-21 12:27:27 +03:00

Tile: the 15 Puzzle game written in Qt4

This was my first real try for Qt (and C++, too).
Don't beat me hard :)
This commit is contained in:
kyak
2011-01-14 16:30:00 +03:00
parent 9186e374b2
commit bd53759d02
6 changed files with 1232 additions and 0 deletions

43
Tile/Makefile Normal file
View File

@@ -0,0 +1,43 @@
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=Tile
PKG_VERSION:=20110114
PKG_RELEASE:=1
include $(INCLUDE_DIR)/package.mk
PKG_UNPACK:=$(CP) ./src/{tile.*,main.cpp,Tile.pro} $(PKG_BUILD_DIR)
$(call include_mk,qmake.mk)
define Package/Tile
SECTION:=games
CATEGORY:=Games
TITLE:=15 Puzzle game, written in Qt
DEPENDS:=+qt4 +qt4-gui +dejavu-fonts-ttf
endef
define Build/Prepare
$(call Build/Prepare/Default)
(\
cd $(PKG_BUILD_DIR); \
echo "QMAKE_LIBS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib" >> Tile.pro; \
echo "INCLUDEPATH += $(STAGING_DIR)/usr/include/QtGui" >> Tile.pro; \
echo "INCLUDEPATH += $(STAGING_DIR)/usr/include/QtCore" >> Tile.pro; \
)
endef
define Build/Configure
$(call Build/Configure/Qmake,Tile)
endef
define Package/Tile/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/Tile $(1)/usr/bin/
endef
$(eval $(call BuildPackage,Tile))