-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
205 lines (159 loc) · 6.87 KB
/
Makefile
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
ifdef DEV
NPM_DRY=--dry
endif
rename-lower:
mv -i ${FILE} ${FILE}-tmp
mv -i ${FILE}-tmp $(shell echo $(FILE) | tr A-Z a-z)
##################################################
# TWEMOJI ########################################
##################################################
twemoji-build:
git clone --depth 1 https://github.com/twitter/twemoji.git tmp/twemoji || true
mkdir -p packages/twemoji/dist
cp -R tmp/twemoji/assets/svg/ packages/twemoji/dist
twemoji-publish:
cd packages/twemoji && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# NOTOEMOJI ######################################
##################################################
notoemoji-build:
git clone --depth 1 https://github.com/googlefonts/noto-emoji tmp/notoemoji || true
mkdir -p packages/notoemoji/dist
cp -R tmp/notoemoji/svg/ packages/notoemoji/dist
notoemoji-publish:
cd packages/notoemoji && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# EMOJITWO #######################################
##################################################
emojitwo-build:
git clone --depth 1 https://github.com/EmojiTwo/emojitwo.git tmp/emojitwo || true
mkdir -p packages/emojitwo/dist
cp -R tmp/emojitwo/svg/ packages/emojitwo/dist
emojitwo-publish:
cd packages/emojitwo && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# FONTAWESOME ####################################
##################################################
fontawesome-build:
git clone --depth 1 https://github.com/FortAwesome/Font-Awesome.git tmp/fontawesome || true
mkdir -p packages/fontawesome/dist
cp -R tmp/fontawesome/svgs/ packages/fontawesome/dist
fontawesome-publish:
cd packages/fontawesome && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# HEROICONS ######################################
##################################################
heroicons-build:
git clone --depth 1 https://github.com/refactoringui/heroicons.git tmp/heroicons || true
mkdir -p packages/heroicons/dist
cp -R tmp/heroicons/src/ packages/heroicons/dist
heroicons-publish:
cd packages/heroicons && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# OPENMOJI #######################################
##################################################
openmoji-build:
git clone --depth 1 https://github.com/hfg-gmuend/openmoji.git tmp/openmoji || true
mkdir -p packages/openmoji/dist
cp -R tmp/openmoji/color/svg/ packages/openmoji/dist/color
cp -R tmp/openmoji/black/svg/ packages/openmoji/dist/black
openmoji-publish:
cd packages/openmoji && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# DRIPICONS ######################################
##################################################
dripicons-build:
git clone --depth 1 https://github.com/amitjakhu/dripicons.git tmp/dripicons || true
mkdir -p packages/dripicons/dist || true
cp -R tmp/dripicons/SVG/ packages/dripicons/dist
dripicons-publish:
cd packages/dripicons && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# REMIXICON ######################################
##################################################
remixicon-build:
git clone --depth 1 https://github.com/Remix-Design/RemixIcon.git tmp/remixicon || true
mkdir -p packages/remixicon/dist || true
cp -R tmp/remixicon/icons/ packages/remixicon/dist
@for file in $(shell ls -d packages/remixicon/dist/*); do \
FILE=$$file $(MAKE) rename-lower; \
done
remixicon-publish:
cd packages/remixicon && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# LINEARICONS ####################################
##################################################
linearicons-build:
git clone --depth 1 https://github.com/cjpatoilo/linearicons.git tmp/linearicons || true
mkdir -p packages/linearicons/dist || true
cp -R tmp/linearicons/dist/svg/ packages/linearicons/dist
linearicons-publish:
cd packages/linearicons && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# LINEAWESOME ####################################
##################################################
lineawesome-build:
git clone --depth 1 https://github.com/icons8/line-awesome.git tmp/lineawesome || true
mkdir -p packages/lineawesome/dist || true
cp -R tmp/lineawesome/svg/ packages/lineawesome/dist
lineawesome-publish:
cd packages/lineawesome && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# FEATHERICONS ###################################
##################################################
feathericons-build:
git clone --depth 1 https://github.com/feathericons/feather.git tmp/feathericons || true
mkdir -p packages/feathericons/dist || true
cp -R tmp/feathericons/icons/ packages/feathericons/dist
feathericons-publish:
cd packages/feathericons && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# IKONATE ########################################
##################################################
ikonate-build:
git clone --depth 1 https://github.com/mikolajdobrucki/ikonate.git tmp/ikonate || true
mkdir -p packages/ikonate/dist || true
cp -R tmp/ikonate/icons/ packages/ikonate/dist
ikonate-publish:
cd packages/ikonate && \
npm publish --access public --tag latest ${NPM_DRY}
##################################################
# MACMOJI ########################################
##################################################
macmoji-build:
cd packages/macmoji && npm install
mkdir -p packages/macmoji/dist || true
macmoji-publish:
cd packages/macmoji && \
npm publish --access public --tag latest -timeout=9999999 ${NPM_DRY}
##################################################
# SVGPORN ########################################
##################################################
svgporn-build:
git clone --depth 1 https://github.com/gilbarbara/logos tmp/svgporn || true
mkdir -p packages/svgporn/dist || true
cp -R tmp/svgporn/logos/ packages/svgporn/dist
svgporn-publish:
cd packages/svgporn && \
npm publish --access public --tag latest -timeout=9999999 ${NPM_DRY}
##################################################
# HEALTHICONS ####################################
##################################################
healthicons-build:
git clone --depth 1 https://github.com/resolvetosavelives/healthicons tmp/healthicons || true
mkdir -p packages/healthicons/dist || true
cp -R tmp/healthicons/public/icons/svg/ packages/healthicons/dist
healthicons-publish:
cd packages/healthicons && \
npm publish --access public --tag latest -timeout=9999999 ${NPM_DRY}