parent
04a008e001
commit
113ce59555
@ -1,22 +1,25 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Function that downloads an archive with the source code by the given url, |
||||
# extracts its files and exports a variable SOURCES_DIR_lib${LIBRARY_NAME} |
||||
function downloadArchive() { |
||||
# extracts its files and exports a variable SOURCES_DIR_${LIBRARY_NAME} |
||||
function downloadTarArchive() { |
||||
# The full name of the library |
||||
LIBRARY_NAME=$1 |
||||
LIBRARY_VERSION=$2 |
||||
DOWNLOAD_URL=$3 |
||||
# The url of the source code archive |
||||
DOWNLOAD_URL=$2 |
||||
|
||||
echo "Ensuring sources of $LIBRARY_NAME $LIBRARY_VERSION" |
||||
LIBRARY_SOURCES=${LIBRARY_NAME}-${LIBRARY_VERSION} |
||||
ARCHIVE_NAME=${DOWNLOAD_URL##*/} |
||||
# Name of the directory after the archive extraction |
||||
LIBRARY_SOURCES="${ARCHIVE_NAME%.tar.*}" |
||||
|
||||
echo "Ensuring sources of $LIBRARY_SOURCES" |
||||
|
||||
if [[ ! -d "$LIBRARY_SOURCES" ]]; then |
||||
curl -O ${DOWNLOAD_URL} |
||||
|
||||
ARCHIVE_NAME=${DOWNLOAD_URL##*/} |
||||
tar xf ${ARCHIVE_NAME} -C . |
||||
rm ${ARCHIVE_NAME} |
||||
fi |
||||
|
||||
export SOURCES_DIR_lib${LIBRARY_NAME}=$(pwd)/${LIBRARY_SOURCES} |
||||
export SOURCES_DIR_${LIBRARY_NAME}=$(pwd)/${LIBRARY_SOURCES} |
||||
} |
||||
|
@ -1,19 +1,9 @@ |
||||
#!/usr/bin/env bash |
||||
|
||||
# Script to download Lame's source code |
||||
|
||||
# Exports SOURCES_DIR_libmp3lame - path where actual sources are stored |
||||
source ${SCRIPTS_DIR}/common-functions.sh |
||||
|
||||
LAME_VERSION=3.100 |
||||
echo "Using libmp3lame $LAME_VERSION" |
||||
LAME_SOURCES=lame-${LAME_VERSION} |
||||
|
||||
if [[ ! -d "$LAME_SOURCES" ]]; then |
||||
TARGET_FILE_NAME=lame-${LAME_VERSION}.tar.gz |
||||
|
||||
curl http://downloads.videolan.org/pub/contrib/lame/${TARGET_FILE_NAME} --output ${TARGET_FILE_NAME} |
||||
tar xf ${TARGET_FILE_NAME} -C . |
||||
rm ${TARGET_FILE_NAME} |
||||
fi |
||||
|
||||
export SOURCES_DIR_libmp3lame=$(pwd)/${LAME_SOURCES} |
||||
downloadTarArchive \ |
||||
"libmp3lame" \ |
||||
"http://downloads.videolan.org/pub/contrib/lame/lame-${LAME_VERSION}.tar.gz" |
||||
|
Loading…
Reference in new issue