mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 14:57:16 +08:00
29 lines
643 B
Bash
29 lines
643 B
Bash
|
#
|
||
|
# Apps Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
pkgname=focuswriter
|
||
|
pkgver=1.3.5.2
|
||
|
pkgrel=2
|
||
|
pkgdesc="A simple fullscreen word processor."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://gottcode.org/$pkgname/"
|
||
|
license=('GPL3')
|
||
|
depends=('hunspell' 'libzip' 'qt' 'sdl_mixer')
|
||
|
categories=('office')
|
||
|
source=(http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2)
|
||
|
md5sums=('9a5a7658fc229a44c0fafd67f2c5f0b3')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
qmake \
|
||
|
PREFIX=/usr
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
make INSTALL_ROOT=$pkgdir install
|
||
|
}
|