mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
26 lines
702 B
Bash
26 lines
702 B
Bash
pkgname=focuswriter
|
|
pkgver=1.6.2
|
|
pkgrel=1
|
|
pkgdesc="A simple fullscreen word processor."
|
|
arch=('x86_64')
|
|
url="http://gottcode.org/$pkgname/"
|
|
screenshot="http://gottcode.org/focuswriter/screenshots/focuswriter_image.png"
|
|
license=('GPL3')
|
|
depends=('qt5-base' 'qt5-multimedia' 'hunspell')
|
|
makedepends=('qt5-tools')
|
|
categories=('office')
|
|
screenshot=("http://gottcode.org/focuswriter/screenshots/focuswriter_stats.png")
|
|
source=("http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2")
|
|
sha256sums=('ac77139b4c9b70d26643e5707a9db9003586a6633779dec20a5c1353602b2655')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
qmake-qt5 PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|