diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-06-19 20:45:16 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2023-06-19 20:45:16 +0300 |
commit | 60a09132b62c3cae86f5e832830a4490ba5bf712 (patch) | |
tree | a893191d13b0bf294fb81439a27505822e1bac67 /Makefile.am | |
parent | b65c64a200dac8194dacc90ae2150b683f64cd8a (diff) | |
download | sciteco-60a09132b62c3cae86f5e832830a4490ba5bf712.tar.gz |
the SciTECO data installation path is now configurable via --with-scitecodatadir
* This is also the base of $SCITECOPATH.
* Changing it is useful for packaging where it is not possible to factor out the common
files between Curses and Gtk builds into a "sciteco-common" package.
As an alternative, you can now create disjunct sciteco-curses and sciteco-gtk packages.
* You will most likely want to use this for Gtk builds as in:
--with-interface=gtk --program-prefix=g --with-scitecodatadir=/usr/local/share/gsciteco.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 6cee9d6..3375ce8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,15 +7,15 @@ MAYBE_DLMALLOC = contrib/dlmalloc endif SUBDIRS = lib $(MAYBE_DLMALLOC) contrib/rb3ptr src doc tests -dist_pkgdata_DATA = sample.teco_ini +dist_scitecodata_DATA = sample.teco_ini EXTRA_DIST = README TODO # Only the lower resolution PNG icons are installed as they are # required by the GTK UI. # Other uses are left to the distro package manager. -dist_pkgdata_DATA += ico/sciteco-16.png ico/sciteco-32.png \ - ico/sciteco-48.png +dist_scitecodata_DATA += ico/sciteco-16.png ico/sciteco-32.png \ + ico/sciteco-48.png EXTRA_DIST += ico/sciteco-256.png ico/sciteco.ico EXTRA_DIST += win32/loaders.cache |