desktop/tetzle/PKGBUILD

28 lines
734 B
Bash
Raw Normal View History

# Maintainer: Graeme Gott <graeme@gottcode.org>
pkgname=tetzle
pkgver=2.0.3
pkgrel=1
pkgdesc="A jigsaw puzzle with tetrominoes for pieces."
arch=('i686' 'x86_64')
url="http://gottcode.org/${pkgname}/"
license=('GPL3')
depends=('qt')
optdepends=('jhead: auto-orient images')
install=${pkgname}.install
source=(http://gottcode.org/${pkgname}/${pkgname}-${pkgver}-src.tar.bz2)
md5sums=('f28c63680835fd69ed1a30221dc7730b')
sha256sums=('6c29ea61501dcc0149ece879217df5710d1169bfae940a667af2a19605415b51')
screenshot='http://gottcode.org/tetzle/screenshots/small.png'
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
qmake PREFIX=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make INSTALL_ROOT="${pkgdir}/" install
}