desktop/texmaker/PKGBUILD
2014-08-25 07:23:45 +00:00

27 lines
693 B
Bash

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