mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
27 lines
675 B
Bash
27 lines
675 B
Bash
# Maintainer : abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=texmaker
|
|
pkgver=4.0.4
|
|
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=('5abe8618367bd7923f792378751648f7')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
qmake texmaker.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make install INSTALL_ROOT="$pkgdir"
|
|
}
|