fix getting latest parts library

This commit is contained in:
Gwenhael Le Moine 2021-06-10 11:09:11 +02:00
parent 9d64023474
commit 91164a0adc
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -41,14 +41,14 @@ cp -a docs/leocad.1 $PKG/usr/man/man1
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
LIBRARY_URL=$(curl -s https://api.github.com/repos/leozide/leocad/releases | grep -o "http.*Library-Linux.*zip" | head -n1)
LIBRARY_FILE=$(echo $LIBRARY_URL | grep -o "Library-Linux-[0-9]*.zip")
LIBRARY_VERSION=$(echo $LIBRARY_FILE | grep -o "[0-9]*")
LIBRARY_URL=$(curl -s https://api.github.com/repos/leozide/leocad/releases | grep -o "http.*Library-.*zip" | head -n1)
LIBRARY_FILE=$(echo $LIBRARY_URL | grep -o "Library-[0-9.]*.zip")
LIBRARY_VERSION=$(echo $LIBRARY_FILE | grep -o "[0-9.]*")
[ ! -e $CWD/$LIBRARY_FILE ] && wget -c -O $CWD/$LIBRARY_FILE $LIBRARY_URL
# Data from zip-file + set permissions
mkdir -p $PKG/usr/share/leocad
unzip $CWD/$LIBRARY_FILE -d $PKG/usr/share/leocad
unzip $CWD/$LIBRARY_FILE -d $PKG/usr/share/leocad/
chown -R root:root $PKG
# correction