mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-15 21:04:46 +01:00
11 lines
514 B
Bash
Executable file
11 lines
514 B
Bash
Executable file
#/bin/bash
|
|
set -e
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
cd "$(dirname "$0")"/deps
|
|
echo `pwd`
|
|
curl -s https://downloads.filestash.app/upload/libresize-linux-x86-64.a > libresize.a
|
|
curl -Ls https://downloads.filestash.app/upload/libresize-linux-headers.tar.gz | tar zxf - -C /usr/local/include/
|
|
|
|
curl -s https://downloads.filestash.app/upload/libtranscode-linux-x86-64.a > libtranscode.a
|
|
curl -Ls https://downloads.filestash.app/upload/libtranscode-linux-headers.tar.gz | tar zxf - -C /usr/local/include/
|