wok-next view texmacs/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="texmacs"
4 VERSION="1.0.7.18"
5 CATEGORY="office"
6 SHORT_DESC="The high quality of TeX with a WYSIWYG editor"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL"
9 WEB_SITE="http://www.texmacs.org/tmweb/home/welcome.en.html"
11 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
12 WGET_URL="ftp://ftp.texmacs.org/pub/$PACKAGE/targz/$TARBALL"
14 BUILD_DEPENDS="libx11-dev gmp-dev guile-dev freetype-dev imlib2-dev"
16 compile_rules() {
17 ./configure \
18 --with-imlib2 \
19 --disable-qt \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --libexecdir=/usr/lib \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$install install
27 }
29 genpkg_rules() {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 cp -a $install/usr/share $fs/usr
34 # freetype and TeXmacs-windows-fonts avoid depending on TeX which is a *huge* system
35 DEPENDS="ghostscript gmp guile freetype texmacs-windows-fonts"
36 }