summaryrefslogtreecommitdiff
path: root/community/texmaker/PKGBUILD
blob: ce71432bb88b689c9559d3e443d8db25d8d8079d (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
35
# 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.2
pkgrel=1
pkgdesc='Free cross-platform latex editor'
arch=('i686' 'x86_64' 'mips64el')
url="http://www.xm1math.net/texmaker/index.html"
license=('GPL')
install='texmaker.install'
depends=('poppler-qt' 'ghostscript' 'qtwebkit')
source=("http://www.xm1math.net/texmaker/texmaker-${pkgver}.tar.bz2")
md5sums=('aa04c37a0117a6f924c0f7eed5732fe2')

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
}