2010-05-31 04:12:24 +08:00
|
|
|
pkgname=kile
|
2012-09-30 17:18:51 +08:00
|
|
|
pkgver=2.1.3
|
2016-02-14 00:54:53 +08:00
|
|
|
pkgrel=5
|
2010-05-31 04:12:24 +08:00
|
|
|
pkgdesc="A user friendly TeX/LaTeX frontend for KDE."
|
2016-02-14 00:54:53 +08:00
|
|
|
arch=("x86_64")
|
2010-05-31 04:12:24 +08:00
|
|
|
license=('GPL2')
|
|
|
|
url="http://kile.sourceforge.net/"
|
2016-02-14 00:54:53 +08:00
|
|
|
screenshot="http://kile.sourceforge.net/images/screenshots/snap_structureview.png"
|
2015-11-14 16:28:24 +08:00
|
|
|
depends=('kdelibs' 'texlive-core' 'docbook-xsl' 'kde-baseapps-katepart')
|
2010-05-31 04:12:24 +08:00
|
|
|
makedepends=('cmake' 'automoc4')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('office')
|
2010-05-31 04:12:24 +08:00
|
|
|
install=kile.install
|
|
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
|
2012-09-30 17:18:51 +08:00
|
|
|
md5sums=('f3129e73eea21890c40781de80b44808')
|
2010-05-31 04:12:24 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}
|
2012-09-30 17:18:51 +08:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2010-05-31 04:12:24 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
2012-09-30 17:18:51 +08:00
|
|
|
make
|
2010-05-31 04:12:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/build
|
2012-09-30 17:18:51 +08:00
|
|
|
make DESTDIR=$pkgdir install
|
2010-05-31 04:12:24 +08:00
|
|
|
}
|