mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
26 lines
702 B
Bash
26 lines
702 B
Bash
pkgname=focuswriter
|
|
pkgver=1.6.3
|
|
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=('7de693e8786738c50bde53d4e325334ecf3b8155d7c9b37e64bbd9adedcb9f40')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
qmake-qt5 PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|