desktop/texmaker/PKGBUILD
2014-05-02 09:10:04 +00:00

27 lines
692 B
Bash

# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
pkgname=texmaker
pkgver=4.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=('9297da00423e341b76295f208a91096c')
build() {
cd $srcdir/$pkgname-$pkgver
qmake texmaker.pro
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make install INSTALL_ROOT="$pkgdir"
}