mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +00:00
e3fd554026
This supports stable package hashes in all combinations of user, umask, and creation time. Related to #2842
17 lines
406 B
Makefile
17 lines
406 B
Makefile
content: qt5_qtquick2.tar
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/qt5)
|
|
|
|
INSTALL_DIR := qt/qml/QtQuick.2
|
|
QMLDIR := $(INSTALL_DIR)/qmldir
|
|
|
|
$(INSTALL_DIR):
|
|
mkdir -p $@
|
|
|
|
$(QMLDIR): $(INSTALL_DIR)
|
|
cp $(PORT_DIR)/src/lib/qt5/qt5/qtdeclarative/src/imports/qtquick2/qmldir $@
|
|
|
|
qt5_qtquick2.tar: $(QMLDIR)
|
|
tar --owner=0 --group=0 --numeric-owner --mode='go=' --mtime='1970-01-01' -cf $@ qt
|
|
rm -rf qt
|