mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
32 lines
811 B
Bash
32 lines
811 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: Graeme Gott <graeme@gottcode.org>
|
|
|
|
pkgname=tanglet
|
|
pkgver=1.2.2
|
|
pkgrel=1
|
|
pkgdesc="A single player word finding game based on Boggle"
|
|
arch=('i686' 'x86_64')
|
|
url="http://gottcode.org/${pkgname}/"
|
|
license=('GPL3')
|
|
depends=('qt' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils')
|
|
categories=('games')
|
|
install=${pkgname}.install
|
|
source=("http://gottcode.org/${pkgname}/${pkgname}-${pkgver}-src.tar.bz2")
|
|
sha256sums=('c90d5c36b7e6cca54cdc001c7eecfb333795add16e6ae01f100026c61f4a84da')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
qmake PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make INSTALL_ROOT="${pkgdir}/" install
|
|
}
|