mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-30 23:56:39 +00:00
22 lines
502 B
Makefile
22 lines
502 B
Makefile
DASH = dash-0.5.6
|
|
DASH_TGZ = $(DASH).tar.gz
|
|
DASH_URL = http://gondor.apana.org.au/~herbert/dash/files/$(DASH_TGZ)
|
|
|
|
#
|
|
# Interface to top-level prepare Makefile
|
|
#
|
|
PORTS += $(DASH)
|
|
|
|
prepare:: $(CONTRIB_DIR)/$(DASH)
|
|
|
|
#
|
|
# Port-specific local rules
|
|
#
|
|
$(DOWNLOAD_DIR)/$(DASH_TGZ):
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(DASH_URL) && touch $@
|
|
|
|
$(CONTRIB_DIR)/$(DASH): $(DOWNLOAD_DIR)/$(DASH_TGZ)
|
|
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
|
|
$(VERBOSE)patch -N -p0 < src/noux-pkg/dash/build.patch
|
|
|