PrawnOS-nonfree/packages/filesystem/font-source-code-pro/makefile

28 lines
560 B
Makefile
Raw Normal View History

2020-06-14 21:07:29 +02:00
2020-06-13 03:23:04 +02:00
#import all shared make vars
PRAWNOS_ROOT := $(shell git rev-parse --show-toplevel)
include $(PRAWNOS_ROOT)/scripts/common.mk
2020-06-13 03:23:04 +02:00
VERSION := $(shell cd src/; dpkg-parsechangelog --show-field Version)
2020-06-14 21:07:29 +02:00
EMPTY := ""
2020-06-13 03:23:04 +02:00
font-source-code-pro_$(VERSION)_all.deb:
@echo Building $@
2020-05-22 22:37:12 +02:00
cd src/; debuild -us -uc
.PHONY: clean
clean:
rm -rf *.upload
rm -rf *.deb
rm -rf *.changes
.PHONY: upload
upload:
dput deb.prawnos.com *.changes
2020-06-14 21:07:29 +02:00
install:
ifndef INSTALL_TARGET
$(error INSTALL_TARGET is not set)
endif
cp font-source-code-pro_$(VERSION)_all.deb $(INSTALL_TARGET)