desktop/lyx/PKGBUILD
Francesco Marinucci b3ff3e2623 lyx: rebuild
2014-06-10 22:25:57 +00:00

41 lines
1.2 KiB
Bash

# Maintainer: Ernesto Manriquez <alejandronova@gmail.com>
pkgname=lyx
pkgver=2.1.0
pkgrel=2
pkgdesc="An advanced open-source document processor"
arch=('x86_64')
url="http://www.lyx.org"
depends=('qt' 'texlive-core' 'python2' 'perl' 'imagemagick' 'enchant' 'libmythes' 'boost-libs' 'icu')
makedepends=('boost' 'bc')
optdepends=('texlive-most: TeX Live goodies'
'kbibtex: BibTeX reference manager')
license=('GPL')
source=("ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/$pkgname-$pkgver.tar.xz"
'lyx.desktop'
'lyxrc.dist')
screenshot=('http://www.lyx.org/images/about/main_window.png')
md5sums=('9441eb16b07bae3aeaf7d8ebaa74b73f'
'a511db621c56ff56383496533db3701a'
'b70fdeab95ba4a6c3ff72410dfa61823')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr \
--with-frontend=qt4 --without-included-boost
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
# install desktop entry
install -Dm644 "${srcdir}/lyx.desktop" "${pkgdir}/usr/share/applications/lyx.desktop"
# install default config file
install -Dm644 "${srcdir}/lyxrc.dist" "${pkgdir}/usr/share/lyx/lyxrc.dist"
}