blob: b1fd5e45ee601315c8c1f30589036f5ddcc11c41 (
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
pkgrel=1
pkgdesc='Free cross-platform latex editor'
arch=('i686' 'x86_64' 'mips64el')
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=('d2802c093906b62c455ccc7944106da3')
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
}
|