2006-02-23 15:26:10 +00:00
|
|
|
# Description: LaTeX enabled word processor
|
|
|
|
# URL: http://www.lyx.org
|
2009-01-20 21:05:13 +01:00
|
|
|
# Maintainer: Johannes Winkelmann, jw at smts dot ch
|
2006-04-13 21:43:04 +00:00
|
|
|
# Packager: Simone Rota, sip at crux dot nu
|
2008-02-14 17:26:08 +00:00
|
|
|
# Depends on: tetex, qt4, imagemagick
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=lyx
|
2009-01-20 21:00:08 +01:00
|
|
|
version=1.6.1
|
2006-02-23 15:26:10 +00:00
|
|
|
release=1
|
2009-01-20 21:00:08 +01:00
|
|
|
source=(ftp://ftp.lyx.org/pub/$name/stable/1.6.x/$name-$version.tar.bz2)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build(){
|
|
|
|
cd $name-$version
|
2008-02-14 17:26:08 +00:00
|
|
|
export QTDIR=/usr/share/qt4
|
|
|
|
./configure --prefix=/usr --with-frontend=qt4 --disable-nls \
|
2006-12-07 21:14:47 +01:00
|
|
|
--mandir=/usr/man
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -rf $PKG/usr/info
|
|
|
|
rm -rf $PKG/usr/share/lyx/examples
|
2008-05-27 07:50:27 +02:00
|
|
|
|
|
|
|
# remove localization files
|
|
|
|
rm -rf $PKG/usr/share/lyx/bind/??/ \
|
|
|
|
$PKG/usr/share/lyx/doc/??/
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|
|
|
|
|