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

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
}