updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / hexglass / PKGBUILD
blob05ab29ae0486c88c3a10d8c4da54adb7f4a6ed01
1 # Maintainer: Alexey Michurin <a.michurin@gmail.com>
3 pkgname=hexglass
4 pkgver=1.2.1
5 pkgrel=1
6 pkgdesc='A Tetris-like game on a hexagonal grid'
7 arch=('i686' 'x86_64')
8 url='http://hexglass.googlecode.com/'
9 license=('GPL3')
10 groups=()
11 depends=('qt')
12 makedepends=('qt')
13 optdepends=()
14 provides=()
15 conflicts=()
16 replaces=()
17 backup=()
18 options=()
19 install=
20 changelog="$pkgname.changelog"
21 source=("http://hexglass.googlecode.com/files/$pkgname-$pkgver.tar.gz")
22 noextract=()
23 md5sums=('408148e6b05065d12edd7066b929465b')
25 build() {
26   cd "$srcdir/$pkgname-$pkgver"
27   qmake
28   make
31 package() {
32   cd "$srcdir/$pkgname-$pkgver"
33   make INSTALL_ROOT="$pkgdir/" install
36 # vim:set ts=2 sw=2 et: