mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
28 lines
619 B
Bash
28 lines
619 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.3
|
|
pkgrel=1
|
|
pkgdesc="A simple fullscreen word processor."
|
|
arch=('i686' 'x86_64')
|
|
url="http://gottcode.org/$pkgname/"
|
|
license=('GPL3')
|
|
depends=('hunspell' 'libzip' 'qt' 'sdl_mixer')
|
|
source=(http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2)
|
|
md5sums=('378e93f8bcc6708ef419bb4e9361ac5e')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
qmake \
|
|
PREFIX=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|