mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-17 12:39:02 +00:00
93 lines
2.4 KiB
Makefile
93 lines
2.4 KiB
Makefile
PYTHON=python3
|
|
REQ_MINOR_VERSION=4
|
|
|
|
# Our build scripts are not very "make like" yet and perform their task in a bundle. For now, we
|
|
# use one of each file to act as a representative, a target, of these groups.
|
|
submodules_target = hscommon/__init__.py
|
|
|
|
localedirs = $(wildcard locale/*/LC_MESSAGES)
|
|
pofiles = $(wildcard locale/*/LC_MESSAGES/*.po)
|
|
mofiles = $(patsubst %.po,%.mo,$(pofiles))
|
|
|
|
vpath %.po $(localedirs)
|
|
vpath %.mo $(localedirs)
|
|
|
|
.PHONY : default
|
|
default : | run.py
|
|
@echo "Build complete! You can run dupeGuru with 'make run'"
|
|
|
|
run.py : | env i18n modules qt/dg_rc.py
|
|
cp qt/run_template.py run.py
|
|
|
|
.PHONY : run
|
|
run: | run.py
|
|
./env/bin/python run.py
|
|
|
|
.PHONY : reqs
|
|
reqs :
|
|
@ret=`${PYTHON} -c "import sys; print(int(sys.version_info[:2] >= (3, ${REQ_MINOR_VERSION})))"`; \
|
|
if [ $${ret} -ne 1 ]; then \
|
|
echo "Python 3.${REQ_MINOR_VERSION}+ required. Aborting."; \
|
|
exit 1; \
|
|
fi
|
|
@${PYTHON} -m venv -h > /dev/null || \
|
|
echo "Creation of our virtualenv failed. If you're on Ubuntu, you probably need python3-venv."
|
|
@${PYTHON} -c 'import PyQt5' >/dev/null 2>&1 || \
|
|
{ echo "PyQt 5.4+ required. Install it and try again. Aborting"; exit 1; }
|
|
|
|
# Ensure that submodules are initialized
|
|
$(submodules_target) :
|
|
git submodule init
|
|
git submodule update
|
|
|
|
env : | $(submodules_target) reqs
|
|
@echo "Creating our virtualenv"
|
|
${PYTHON} -m venv env --system-site-packages
|
|
./env/bin/pip install -r requirements.txt
|
|
|
|
build/help : | env
|
|
./env/bin/python build.py --doc
|
|
|
|
qt/dg_rc.py : qt/dg.qrc
|
|
pyrcc5 qt/dg.qrc > qt/dg_rc.py
|
|
|
|
.PHONY : i18n
|
|
i18n: $(mofiles)
|
|
|
|
%.mo : %.po
|
|
msgfmt -o $@ $<
|
|
|
|
core/pe/_block.*.so : core/pe/modules/block.c core/pe/modules/common.c | env
|
|
./env/bin/python hscommon/build_ext.py $^ _block
|
|
mv _block.*.so core/pe
|
|
|
|
core/pe/_cache.*.so : core/pe/modules/cache.c core/pe/modules/common.c | env
|
|
./env/bin/python hscommon/build_ext.py $^ _cache
|
|
mv _cache.*.so core/pe
|
|
|
|
qt/pe/_block_qt.*.so : qt/pe/modules/block.c | env
|
|
./env/bin/python hscommon/build_ext.py $^ _block_qt
|
|
mv _block_qt.*.so qt/pe
|
|
|
|
.PHONY: modules
|
|
modules : core/pe/_block.*.so core/pe/_cache.*.so qt/pe/_block_qt.*.so
|
|
|
|
.PHONY : mergepot
|
|
mergepot :
|
|
./env/bin/python build.py --mergepot
|
|
|
|
.PHONY : normpo
|
|
normpo :
|
|
./env/bin/python build.py --normpo
|
|
|
|
.PHONY : srcpkg
|
|
srcpkg :
|
|
./scripts/srcpkg.sh
|
|
|
|
.PHONY : clean
|
|
clean:
|
|
-rm run.py
|
|
-rm -rf build
|
|
-rm locale/*/LC_MESSAGES/*.mo
|
|
-rm core/pe/*.so qt/pe/*.so
|