desktop/focuswriter/PKGBUILD

29 lines
714 B
Bash
Raw Normal View History

2014-03-27 07:18:11 +08:00
# Maintainer: U t G <utg.chakra.linux[at]gmail[dot]com>
2011-08-23 07:43:42 +08:00
pkgname=focuswriter
2014-04-14 02:47:35 +08:00
pkgver=1.4.6
2013-04-04 17:00:16 +08:00
pkgrel=1
2011-08-23 07:43:42 +08:00
pkgdesc="A simple fullscreen word processor."
2012-11-10 08:55:43 +08:00
arch=('x86_64')
2011-08-23 07:43:42 +08:00
url="http://gottcode.org/$pkgname/"
2012-09-23 23:02:12 +08:00
screenshot="http://gottcode.org/focuswriter/screenshots/focuswriter_image.png"
2011-08-23 07:43:42 +08:00
license=('GPL3')
2012-09-23 23:02:12 +08:00
depends=('enchant' 'libzip' 'qt' 'sdl_mixer')
categories=('office')
2012-11-10 08:55:43 +08:00
screenshot=("http://gottcode.org/focuswriter/screenshots/focuswriter_stats.png")
source=("http://gottcode.org/$pkgname/$pkgname-$pkgver-src.tar.bz2")
2014-04-14 02:47:35 +08:00
md5sums=('ab59ebd7679f10a5601e21fa807c7c8a')
2011-08-23 07:43:42 +08:00
build() {
cd $srcdir/$pkgname-$pkgver
qmake \
PREFIX=/usr
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make INSTALL_ROOT=$pkgdir install
}
2014-03-27 07:18:11 +08:00