forked from libretro/Lakka-LibreELEC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_libretro_tarball.sh
executable file
·97 lines (79 loc) · 2.23 KB
/
get_libretro_tarball.sh
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
#!/bin/bash
# This script downloads a tarball of libretro package (packages/libretro) and extracts
# this tarball to sources/<package> folder.
# It is usefull in cases when the core repository was force-pushed and it is not possible
# to clone / checkout the the desired commit, which breaks the build.
# Where are the tarballs hosted
URL="https://nightly.builds.lakka.tv"
# Check arguments and print usage
[ $# -ne 1 ] && {
echo "Usage:"
echo "$0 <package>"
echo ""
echo "Downloads tarballs from ${URL} and extracts it in sources/<package> folder"
exit 1
}
PKG=${1}
# Check if there is such package
for FINDPATH in packages/lakka/retroarch_base/${PKG} packages/lakka/libretro_cores/${PKG} ; do
if [ -d ${FINDPATH} ] ; then
PKG_PATH=${FINDPATH}
break
fi
done
[ -z "${PKG_PATH}" ] && {
echo "There is no package '${PKG}' in packages/lakka/retroarch_base and package/lakka/libretro_cores"
exit 2
}
# Check if we have package.mk
[ ! -f ${PKG_PATH}/package.mk ] && {
echo "Missing package.mk in ${PKG_PATH}"
exit 3
}
# Import package properties
source ${PKG_PATH}/package.mk 2>&1 >/dev/null
# Check for package version
[ -z "${PKG_VERSION}" ] && {
echo "No PKG_VERSION set in ${PKG_PATH}/package.mk"
exit 4
}
LINK=${URL}/sources/${PKG}/${PKG}-${PKG_VERSION}.tar.xz
FILENAME=sources/${PKG}/${PKG}-${PKG_VERSION}.tar.xz
# Do not continue when a tarball is already present in the sources folder
# (also safety catch in case this script is started on the server, where the tarballs are hosted)
[ -f ${FILENAME} ] && {
echo "There is already ${FILENAME} - remove it and try again"
exit 5
}
# Create folder in case it does not exist already
if [ ! -d sources/${PKG} ]
then
if [ ! -f sources/${PKG} ]
then
mkdir -p sources/${PKG}
else
echo "Cannot create folder sources/$PKG - file exists"
exit 6
fi
fi
# Check if we have wget and tar
for PRG in wget tar
do
[ -z "$(which ${PRG} 2>/dev/null)" ] && {
echo "Please install ${PRG}"
exit 7
}
done
# Download the tarball
echo "Downloading to ${FILENAME} ..."
wget --quiet -O ${FILENAME} ${LINK}
[ ${?} -gt 0 ] && {
echo "Error downloading ${LINK}"
exit 8
}
# Extract the tarball
echo "Extracting..."
tar xf ${FILENAME} -C sources/${PKG}
[ ${?} -gt 0 ] && exit $?
# And we are done
echo "Done"