File: install.pl.template

package info (click to toggle)
polymake 4.14-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 35,888 kB
  • sloc: cpp: 168,933; perl: 43,407; javascript: 31,575; ansic: 3,007; java: 2,654; python: 632; sh: 268; xml: 117; makefile: 61
file content (21 lines) | stat: -rw-r--r-- 1,221 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This is a template for an optional script installing non-standard artifacts
# like java archives or other resources built in a bundled or standalone extension.
# Please edit it according to your needs and rename it to install.pl
# If you don't need it, you can safely delete this file right now.

# This script can use any subroutines defined in the main install.pl script
# (to be found in the support directory of the core polymake system)
# like make_dir, copy_dir, or copy_file.

# The configuration values of the extension can be found in the global hash %ConfigFlags.
# The global variable $ext_root points to the top directory of the extension.
# The global variable $buildir points to the build directory of the extension, usually
# it will be $ext_root/build/Opt .
# The global variable $root points to the top directory of the core polymake system.

# A bundled extension should install all binaries specific for a system architecture
# into an appropriate subdirectory of $InstallArch and everything else into subdirectories
# of $InstallTop.  For a standalone extension, the corresponding destination directories
# are $ExtArch and $ExtTop.

# Examples can be found in bundled extensions java and jreality.