1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
# -*- makefile -*-
#
# SYSTEM FOR INSTALLATION
SYSTEM_TYPE=deb
# If TEXDIR is in LaTeX search dirs, set this to 0. If the user is
# allowd to install any LaTeX variant, with texmf trees somewhere we
# can't know, set this to 1.
LATEX_FREE=0
# INSTALLATION : where to install parts of the package ?
# directory for executable
BINDIR=/usr/bin
# directory for perl modules
PERLDIR=/usr/share/perl5
# directory for some AMC executables, not to be used by end-user
MODSDIR=/usr/libexec/AMC
# directory for LaTeX style file
TEXDIR=/usr/share/texmf/tex/latex/AMC
# directory for LaTeX doc
TEXDOCDIR=/usr/share/doc/auto-multiple-choice/latex
# directory for man (1) files
MAN1DIR=/usr/share/man/man1
# directory for desktop file
DESKTOPDIR=/usr/share/applications
# directory for icons (svg)
ICONSDIR=/usr/share/auto-multiple-choice/icons
# directory for icons (xpm)
PIXDIR=
# directory for locales (MO files will be put in
# $(LOCALEDIR)/fr/LC_MESSAGES for example)
LOCALEDIR=/usr/share/locale
# directory for AMC packaged models
MODELSDIR=/usr/share/auto-multiple-choice/models
# directory for documentation (will use html/auto-multiple-choice.* subdirs for HTML docs)
DOCDIR=/usr/share/doc/auto-multiple-choice
# directory for Shared MIME-info Database
SHARED_MIMEINFO_DIR=/usr/share/mime/packages
# directory for gtksourceview/gedit languages highlighting syntax
LANG_GTKSOURCEVIEW_DIR=/usr/share/gtksourceview-5/language-specs
# BUILD : where to find some files used for building AMC ?
# URLs can be used if XML catalogs are present.
#DOCBOOK_MAN_XSL=/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl
DOCBOOK_MAN_XSL=http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
#DOCBOOK_XHTML_XSL=/usr/share/xml/docbook/stylesheet/nwalsh/xhtml/chunk.xsl
DOCBOOK_XHTML_XSL=http://docbook.sourceforge.net/release/xsl/current/xhtml/chunk.xsl
#DOCBOOK_DTD=/usr/share/xml/docbook/schema/dtd/4.5/docbookx.dtd
DOCBOOK_DTD=http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd
# BUILD : options to compile with netpbm / opencv libraries
GCC_NETPBM=-lnetpbm
GCC_OPENCV=-I /usr/include/opencv4
GCC_OPENCV_LIBS=auto
# INFO IN DESKTOP FILE
DESKTOP_CAT=Education;
# INSTALL USER AND GROUP
INSTALL_USER=
INSTALL_GROUP=
TAR_REPRODUCIBLE_ARGS=--sort=name --owner=root --group=root --numeric-owner --mtime=@1451602800
|