summaryrefslogtreecommitdiff
path: root/packages/a/patchelf/Makefile
blob: 3e793025f5a03c8a93e060814797389d7dd48337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# Project Home:
# ============
#   https://nixos.org/patchelf.html
#
# GitHub:
# ======
#   https://github.com/NixOS/patchelf
#

url        = https://github.com/NixOS

repo_name  = patchelf

#
# List of revisions to be extracted:
# =================================
#
#                                               hash | version
#            ----------------------------------------+--------
revisions  = 44b7f9583ffe0ee09c4da8bd996ef9a6a0017e1a:0.9
revisions += 27ffe8ae871e7a186018d66020ef3f6162c12c69:0.10.1
revisions += 978325def61e0126d13d7936eee51326cbd433d4:0.10.2
revisions += 8d3a16e97294e3c5521c61b4c8835499c9918264:0.12
revisions += a949ff23315bbb5863627c4655fe216ecbf341a2:0.13
revisions += 49008002562355b0e35075cbc1c42c645ff04e28:0.15
revisions += 5908e16cd562bcb1909be4de0409c4912a8afc52:0.17.2

git_repo   = .git_clone

suffix     = tar.xz

versions   = $(foreach tag, $(revisions), $(shell echo $(tag) | cut -f 2 -d ':'))

tarballs   = $(addsuffix .$(suffix), $(addprefix $(repo_name)-, $(versions)))
sha1s      = $(addsuffix .sha1sum, $(tarballs))

TARGETS = repository_clean

all: $(TARGETS)

.PHONY: downloads_clean repository_clean

$(git_repo):
	@echo -e "\n======= Clone $(repo_name).git repository =======\n"
	@rm -rf $(repo_name)
	@git clone $(url)/$(repo_name).git $(repo_name)
	@touch $@

$(tarballs): $(git_repo)
	@for revision in $(revisions) ; do \
	  hash=`echo $$revision | cut -f 1 -d ':'` ; \
	  version=`echo $$revision | cut -f 2 -d ':'` ; \
	  if [ ! -f $(repo_name)-$$version.$(suffix) ]; then \
	    echo -e "\n======= Creating '$(repo_name)-$$version.$(suffix)' snapshot =======" ; \
	    ( cd $(repo_name) && \
	      git archive --format=tar --prefix=$(repo_name)-$$version/ $$hash | \
	      xz >../$(repo_name)-$$version.$(suffix) ) ; \
	    tar xJf $(repo_name)-$$version.$(suffix) ; \
	    ( cd $(repo_name)-$$version ; ./bootstrap.sh ; rm -rf autom4te.cache .git* build-aux/*~ *~ ) ; \
	    tar cJf $(repo_name)-$$version.$(suffix) $(repo_name)-$$version ; \
	    rm -rf $(repo_name)-$$version ; \
	  fi ; \
	done

$(sha1s): %.$(suffix).sha1sum : %.$(suffix)
	@for tarball in $< ; do \
	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======" ; \
	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
	done

repository_clean: $(sha1s)
	@echo -e "\n======= Remove cloned $(repo_name).git repository =======\n"
	@rm -rf $(git_repo) $(repo_name)

downloads_clean:
	@rm -rf $(tarballs) $(sha1s)
	@rm -rf $(git_repo) $(repo_name)