Python scripts should already properly run, whether you run them with a direct python shebang or a `env python` one (cf. previous commit). But it's still nice to install a `.interp` file, which allows to control exactly the interpreter to use, overriding the shebang. With this file, Python scripts will use installation-time Python interpreter. Also update old code to make the interp contents about Python 3 instead of 2.
81 lines
2.2 KiB
Makefile
81 lines
2.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
pluginexecdir = $(gimpplugindir)/plug-ins
|
|
|
|
source_scripts = \
|
|
## colorxhtml.py \
|
|
## file-openraster.py \
|
|
## foggify.py \
|
|
## gradients-save-as-css.py \
|
|
## histogram-export.py \
|
|
## palette-offset.py \
|
|
## palette-sort.py \
|
|
palette-to-gradient.py
|
|
## py-slice.py \
|
|
## python-eval.py \
|
|
## spyro_plus.py \
|
|
## \
|
|
## benchmark-foreground-extract.py \
|
|
## clothify.py \
|
|
## shadow_bevel.py \
|
|
## sphere.py \
|
|
## whirlpinch.py
|
|
|
|
scripts = \
|
|
## colorxhtml/colorxhtml.py \
|
|
## file-openraster/file-openraster.py \
|
|
## foggify/foggify.py \
|
|
## gradients-save-as-css/gradients-save-as-css.py \
|
|
## histogram-export/histogram-export.py \
|
|
## palette-offset/palette-offset.py \
|
|
## palette-sort/palette-sort.py \
|
|
palette-to-gradient/palette-to-gradient.py
|
|
## py-slice/py-slice.py \
|
|
## python-eval/python-eval.py \
|
|
## spyro_plus/spyro_plus.py
|
|
|
|
#test_scripts = \
|
|
# benchmark-foreground-extract/benchmark-foreground-extract.py \
|
|
# clothify/clothify.py \
|
|
# shadow_bevel/shadow_bevel.py \
|
|
# sphere/sphere.py \
|
|
# whirlpinch/whirlpinch.py
|
|
|
|
$(scripts) $(test_scripts): $(source_scripts)
|
|
$(AM_V_GEN) mkdir -p $(@D) && cp -f "$(srcdir)/$(@F)" $@
|
|
|
|
nobase_pluginexec_SCRIPTS = $(scripts)
|
|
|
|
if GIMP_UNSTABLE
|
|
nobase_pluginexec_SCRIPTS += $(test_scripts)
|
|
endif
|
|
|
|
# python-console has a data file.
|
|
# Therefore let's move it to its own sub-directory.
|
|
#consoleexecdir = $(gimpplugindir)/plug-ins/python-console
|
|
#console_scripts = python-console.py
|
|
#consoleexec_SCRIPTS = $(console_scripts)
|
|
#dist_consoleexec_DATA = pyconsole.py
|
|
|
|
EXTRA_DIST = \
|
|
$(source_scripts)
|
|
# $(console_scripts)
|
|
|
|
CLEANFILES = $(scripts) $(test_scripts)
|
|
|
|
# Python interpreter file.
|
|
|
|
pyinterpdir = $(gimpplugindir)/interpreters
|
|
pyinterpfile = $(pyinterpdir)/pygimp.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
|
|
|
|
uninstall-local:
|
|
rm -f '$(DESTDIR)$(pyinterpfile)'
|