-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinstall-deps.sh
More file actions
28 lines (19 loc) · 926 Bytes
/
Copy pathinstall-deps.sh
File metadata and controls
28 lines (19 loc) · 926 Bytes
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
#!/bin/bash
# clear libs folder but keep the _imports.xml file
find ./libs -mindepth 1 ! -name '_imports.xml' -exec rm -rf {} +
# Libstub
svn checkout https://repos.curseforge.com/wow/libstub/trunk ./libs/LibStub
# CallbackHandler
svn checkout https://repos.curseforge.com/wow/callbackhandler/trunk/CallbackHandler-1.0 ./libs/CallbackHandler-1.0
# LibDBIcon
svn checkout https://repos.curseforge.com/wow/libdbicon-1-0/trunk/LibDBIcon-1.0 ./libs/LibDBIcon-1.0
# HereBeDragons
git clone https://repos.wowace.com/wow/herebedragons ./libs/HereBeDragons
# LibDataBroker
git clone https://github.com/tekkub/libdatabroker-1-1 ./libs/LibDataBroker-1.1
# LibDeflate
git clone https://github.com/SafeteeWoW/LibDeflate ./libs/LibDeflate
# LibSerialize
git clone https://github.com/rossnichols/LibSerialize ./libs/LibSerialize
# Remove .git directories from cloned repositories
find ./libs -type d -name ".git" -exec rm -rf {} +