You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.3 KiB
42 lines
1.3 KiB
SHELL := /bin/bash |
|
PYTHON = python3 |
|
|
|
# for reproducible builds |
|
export LC_ALL := C |
|
export TZ := UTC |
|
export SOURCE_DATE_EPOCH := $(shell git log -1 --pretty=%ct) |
|
export PYTHONHASHSEED := $(SOURCE_DATE_EPOCH) |
|
export BUILD_DATE := $(shell LC_ALL=C TZ=UTC date +'%b %e %Y' -d @$(SOURCE_DATE_EPOCH)) |
|
export BUILD_TIME := $(shell LC_ALL=C TZ=UTC date +'%H:%M:%S' -d @$(SOURCE_DATE_EPOCH)) |
|
|
|
# needs kivy installed or in PYTHONPATH |
|
|
|
.PHONY: theming apk clean |
|
|
|
theming: |
|
#bash -c 'for i in network lightning; do convert -background none theming/light/$i.{svg,png}; done' |
|
$(PYTHON) -m kivy.atlas ../../electrum/gui/kivy/theming/atlas/light 1024 ../../electrum/gui/kivy/theming/light/*.png |
|
prepare: |
|
# running pre build setup |
|
@cp buildozer.spec ../../buildozer.spec |
|
# copy electrum to main.py |
|
@cp ../../run_electrum ../../main.py |
|
@-if [ ! -d "../../.buildozer" ];then \ |
|
cd ../..; buildozer android debug;\ |
|
cp -f blacklist.txt .buildozer/android/platform/python-for-android/src/blacklist.txt;\ |
|
rm -rf ./.buildozer/android/platform/python-for-android/dist;\ |
|
fi |
|
apk: |
|
@make prepare |
|
@-cd ../..; buildozer android debug |
|
@make clean |
|
release: |
|
@make prepare |
|
@-cd ../..; buildozer android release |
|
@make clean |
|
clean: |
|
# Cleaning up |
|
# rename main.py to electrum |
|
@-rm ../../main.py |
|
# remove buildozer.spec |
|
@-rm ../../buildozer.spec
|
|
|