1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/abantecart_ynh.git synced 2024-09-03 18:06:16 +02:00

Create _common

This commit is contained in:
frju365 2017-01-29 01:16:30 +01:00 committed by GitHub
parent 901049abb0
commit 9db945ccd2

13
scripts/_common Normal file
View file

@ -0,0 +1,13 @@
ABANTECART_SOURCE_URL="https://github.com/abantecart/abantecart-src/archive/master.zip"
extract_source() {
local DESTDIR=$1
# retrieve and extract Abantecart Zip File
rc_tarball="${DESTDIR}/abantecart.zip"
sudo wget -q -O "$rc_tarball" "$ABANTECART_SOURCE_URL" \
|| ynh_die "Unable to download source tarball"
sudo unzip "$rc_tarball" -c "$DESTDIR" --strip-components 1 \
|| ynh_die "Unable to extract source tarball"
sudo rm "$rc_tarball"
}