blob: 26d1a8d5dbb7792953c5f2a7ed7c3f8f0b01ef95 (
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
|
# $Id: PKGBUILD 106218 2014-02-25 15:20:41Z bpiotrowski $
# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
pkgname=texmaker
pkgver=4.1.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-qt5' 'qt5-webkit' 'desktop-file-utils')
optdepends=('ghostscript: LaTeX to HTML conversion command'
'ibus-qt5: accented characters support'
'poppler: PDF rendering support')
install="$pkgname.install"
source=("http://www.xm1math.net/$pkgname/$pkgname-$pkgver.tar.bz2")
md5sums=('0b26fe9e29b37eeaf98e568a096d2dad')
build() {
cd "$pkgname-$pkgver"
qmake-qt5 PREFIX=/usr texmaker.pro
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
install -dm755 "$pkgdir/usr/share"
make INSTALL_PATH="$pkgdir" INSTALL_ROOT="$pkgdir" PREFIX="/usr" install
}
|