summaryrefslogtreecommitdiff
path: root/community/texmaker/PKGBUILD
blob: 39d6c2a991b6ffea327864c5620810441860d7ec (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.0.2
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')
source=("http://www.xm1math.net/texmaker/${pkgname}-${pkgver}.tar.bz2")
md5sums=('d375c8f486fe44f3f2a2a7d2ddac08f3')

build() {
	cd ${pkgname}-${pkgver}

	export INSTALL_ROOT=${pkgdir}

	qmake -unix PREFIX=//usr texmaker.pro

	make
}

package() {
	cd ${pkgname}-${pkgver}

	export INSTALL_PATH=${pkgdir}

	make install
}