diff options
Diffstat (limited to 'community/hex-a-hop')
-rw-r--r-- | community/hex-a-hop/PKGBUILD | 26 | ||||
-rw-r--r-- | community/hex-a-hop/hex-a-hop.desktop | 11 |
2 files changed, 37 insertions, 0 deletions
diff --git a/community/hex-a-hop/PKGBUILD b/community/hex-a-hop/PKGBUILD new file mode 100644 index 000000000..80e12e8ac --- /dev/null +++ b/community/hex-a-hop/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 42002 2011-03-11 13:44:37Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: insulae <insulae@gmail.com> + +pkgname=hex-a-hop +pkgver=1.1.0 +pkgrel=2 +pkgdesc='Hex-a-hop is a puzzle game based on hexagonal tiles' +arch=('i686' 'x86_64') +url='http://hexahop.sourceforge.net/' +license=('GPL') +depends=('sdl_mixer' 'sdl_ttf' 'gcc-libs') +makedepends=() +options=(force) +source=("https://downloads.sourceforge.net/project/hexahop/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz" + "hex-a-hop.desktop") +md5sums=('cc8d065c2cc0fce9e08852b8c465175e' + '048ff7975024ae1eda3164620f594c09') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr + make + make install DESTDIR=${pkgdir} + install -Dm0644 $srcdir/hex-a-hop.desktop $pkgdir/usr/share/applications/hex-a-hop.desktop +} diff --git a/community/hex-a-hop/hex-a-hop.desktop b/community/hex-a-hop/hex-a-hop.desktop new file mode 100644 index 000000000..3a0ea92af --- /dev/null +++ b/community/hex-a-hop/hex-a-hop.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Hex-a-Hop +GenericName=Hexagonal Tile-based Puzzle Game +Comment=Hexagonal Tile-based Puzzle Game +Exec=/usr/bin/hex-a-hop +Terminal=false +MultipleArgs=false +Type=Application +Icon=/usr/share/hex-a-hop/icon.bmp +Categories=Game;ArcadeGame |