desktop/texmaker/PKGBUILD
2014-01-04 10:32:59 +00:00

30 lines
753 B
Bash

#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Francesco Marinucci <franzmari[at]chakra-project[dot]it>
pkgname=texmaker
pkgver=4.1.1
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=('0b26fe9e29b37eeaf98e568a096d2dad')
build() {
cd $srcdir/$pkgname-$pkgver
qmake texmaker.pro
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make install INSTALL_ROOT="$pkgdir"
}