summaryrefslogtreecommitdiff
path: root/community/texmaker/PKGBUILD
blob: 607d5081cb7c2d766d554d7fec2f10675f37f0ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: furester <xfurester@hotmail.com> 
# Contributor: Firmicus <firmicus gmx net> 
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>

pkgname=texmaker
pkgver=3.2.1
pkgrel=1
pkgdesc='Free cross-platform latex editor'
arch=('i686' 'x86_64')
url="http://www.xm1math.net/texmaker/index.html"
license=('GPL')
depends=('poppler-qt' 'ghostscript' 'qtwebkit')
source=("http://www.xm1math.net/texmaker/texmaker-${pkgver}.tar.bz2")
md5sums=('3d54fe9e5530f5cd8f9365bf9fb2e910')

build() {
	cd texmaker-${pkgver}

	export INSTALL_ROOT=${pkgdir}

	qmake -unix PREFIX=//usr texmaker.pro

	make
}

package() {
	cd texmaker-${pkgver}

	export INSTALL_PATH=${pkgdir}

	make install
}