desktop/texmaker/PKGBUILD
2013-07-03 19:33:03 +00:00

27 lines
675 B
Bash

# Maintainer : abveritas[at]chakra-project[dot]org>
pkgname=texmaker
pkgver=4.0.2
pkgrel=1
pkgdesc="Free, modern and cross-platform LaTeX editor that integrates many tools."
arch=('x86_64')
url="http://www.xm1math.net/texmaker/"
license=('GPL')
depends=('qtwebkit' 'poppler-qt')
optdepends=('texlive-core')
categories=('office')
screenshots=('http://www.xm1math.net/texmaker/texmakertop_big.png')
source=("http://www.xm1math.net/texmaker/texmaker-$pkgver.tar.bz2")
md5sums=('2097b5911acc461a85fd631dd1e2e5dc')
build() {
cd $srcdir/$pkgname-$pkgver
qmake texmaker.pro
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make install INSTALL_ROOT="$pkgdir"
}