mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:37:15 +08:00
35 lines
949 B
Bash
35 lines
949 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Steven Sroka <Sroka.Steven[at]gmail[dot]com>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
# contributor: Fabio Lima <fheday@dcc.fc.up.pt>
|
|
# contributor: Tomàs Deltell <tdeltell@gmx.es>
|
|
|
|
|
|
|
|
pkgname=texmaker
|
|
pkgver=3.5
|
|
pkgrel=1
|
|
pkgdesc="Texmaker is a free, modern and cross-platform LaTeX editor for linux,
|
|
macosx and windows systems that integrates many tools needed to develop documents
|
|
with LaTeX, in just one application."
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.xm1math.net/texmaker/"
|
|
license=('GPL')
|
|
depends=('qt' 'poppler-qt' 'lcms2')
|
|
categories=('office')
|
|
source=(http://www.xm1math.net/texmaker/texmaker-$pkgver.tar.bz2)
|
|
md5sums=('9ea033ad9890cd8ea5c3ff9e633fcfe8')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
qmake texmaker.pro
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make install INSTALL_ROOT="$pkgdir"
|
|
}
|