mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
27 lines
751 B
Bash
Executable File
27 lines
751 B
Bash
Executable File
pkgname=qstardict
|
|
pkgver=1.3
|
|
pkgrel=1
|
|
pkgdesc="Qt4 clone of StarDict with full support of StarDict dictionaries."
|
|
arch=('x86_64')
|
|
url="http://qstardict.ylsoftware.com/index.php"
|
|
license=('GPL2')
|
|
depends=('hicolor-icon-theme' 'qt5-base')
|
|
makedepends=('qt5-tools')
|
|
provides=('stardict')
|
|
categories=('utils')
|
|
screenshot=('http://qstardict.ylsoftware.com/images/screenshot1.png')
|
|
source=(https://github.com/a-rodin/qstardict/archive/${pkgname}-${pkgver}.tar.gz)
|
|
sha256sums=('9b083a3177407d66a17403742590471a0aa89a3d31df886926b79fa21e4d41a4')
|
|
|
|
build() {
|
|
cd ${srcdir}/$pkgname-$pkgname-$pkgver
|
|
qmake-qt5 ENABLED_PLUGINS="stardict web swac"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/$pkgname-$pkgname-$pkgver
|
|
|
|
make INSTALL_ROOT=${pkgdir} install
|
|
}
|