mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
27 lines
658 B
Bash
27 lines
658 B
Bash
pkgname=tanglet
|
|
pkgver=1.5.0
|
|
pkgrel=1
|
|
pkgdesc="A single player word finding game based on Boggle"
|
|
arch=('i686' 'x86_64')
|
|
url="http://gottcode.org/${pkgname}/"
|
|
license=('GPL3')
|
|
depends=('qt5-base' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils')
|
|
makedepends=('qt5-tools')
|
|
categories=('games')
|
|
install=${pkgname}.install
|
|
source=("http://gottcode.org/${pkgname}/${pkgname}-${pkgver}-src.tar.bz2")
|
|
sha256sums=('225aec0814b7c65070002093c2df86f8d1cc5ffcb83b26811f029a0f2a97040e')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
qmake-qt5 PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make INSTALL_ROOT="${pkgdir}/" install
|
|
}
|