mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
26 lines
755 B
Bash
26 lines
755 B
Bash
pkgname=focuswriter
|
|
pkgver=1.5.4
|
|
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=('enchant' 'libzip' 'qt' 'sdl_mixer')
|
|
categories=('office')
|
|
screenshot=("http://gottcode.org/focuswriter/screenshots/focuswriter_stats.png")
|
|
source=("http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2")
|
|
sha512sums=('f532dac5a0691d7b82a16b5dae115c7d79b161484ba1ad2243fd1ccaeba8ae9c9ed0019eba6cd87cc4155a51f5a97cad16c92b9453671426e214e139d78bc526')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
qmake \
|
|
PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|