Gimp/plug-ins/python/Makefile.am
Jehan ef5c091e58 plug-ins: add Python and JavaScript files to the DIST.
So it seems that whatever is in _SCRIPTS is not in the distribution by
default (I suppose the reason is that even scripts can be generated). So
let's add the non-generated scripts to EXTRA_DIST.
2019-08-16 14:53:19 +02:00

52 lines
1.2 KiB
Makefile

## Process this file with automake to produce Makefile.in
SUBDIRS = \
python-console
palette_offsetdir = $(gimpplugindir)/plug-ins/palette-offset
palette_offset_SCRIPTS = palette-offset.py
palette_to_gradientdir = $(gimpplugindir)/plug-ins/palette-to-gradient
palette_to_gradient_SCRIPTS = palette-to-gradient.py
# TODO: to be ported:
## colorxhtml.py
## file-openraster.py
## foggify.py
## gradients-save-as-css.py
## histogram-export.py
## palette-sort.py
## py-slice.py
## python-eval.py
## spyro_plus.py
if GIMP_UNSTABLE
## benchmark-foreground-extract.py
## clothify.py
## shadow_bevel.py
## sphere.py
## whirlpinch.py
endif
EXTRA_DIST = \
palette-offset.py \
palette-to-gradient.py
# Python interpreter file.
pyinterpdir = $(gimpplugindir)/interpreters
pyinterpfile = $(pyinterpdir)/pygimp.interp
if HAS_PYTHON_INTERP
install-interp-file:
$(mkinstalldirs) '$(DESTDIR)$(pyinterpdir)'
echo 'python=$(PYBIN_PATH)' > '$(DESTDIR)$(pyinterpfile)'
echo 'python3=$(PYBIN_PATH)' >> '$(DESTDIR)$(pyinterpfile)'
echo '/usr/bin/python=$(PYBIN_PATH)' >> '$(DESTDIR)$(pyinterpfile)'
echo ":Python:E::py::`basename $(PYTHON)`:" >> '$(DESTDIR)$(pyinterpfile)'
install-data-local: install-interp-file
endif
uninstall-local:
rm -f '$(DESTDIR)$(pyinterpfile)'