mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
29 lines
766 B
Bash
29 lines
766 B
Bash
# Maintainer: Jeff Huang <s8321414[at]gmail[dot]com>
|
|
# Maintainer: U t G <utg.chakra.linux[at]gmail[dot]com>
|
|
|
|
pkgname=focuswriter
|
|
pkgver=1.5.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=('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")
|
|
md5sums=('1821804c688791cb2843199fa8add164')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
qmake \
|
|
PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|