annotate plugins/libcalendaring/lib/get_sabre_vobject.sh @ 58:082a19037887
default tip
More cleaning up php8 Warnings/deprecations
| author |
Charlie Root |
| date |
Wed, 15 Oct 2025 14:06:01 -0400 |
| parents |
888e774ee983 |
| children |
|
| rev |
line source |
|
4
|
1 #!/bin/sh
|
|
|
2
|
|
|
3 # Download and install the Sabre\Vobject library for this plugin
|
|
|
4
|
|
|
5 wget 'https://github.com/fruux/sabre-vobject/archive/2.1.0.tar.gz' -O sabre-vobject-2.1.0.tar.gz
|
|
|
6 tar xf sabre-vobject-2.1.0.tar.gz
|
|
|
7
|
|
|
8 mv sabre-vobject-2.1.0/lib/* .
|
|
|
9 rm -rf sabre-vobject-2.1.0
|
|
|
10
|
|
|
11 cd lib/Sabre/VObject && wget --no-check-certificate -O Property.php https://raw2.github.com/thomascube/sabre-vobject/84b64c65f9a94f7ec5a5e327bab3cc1335dd613c/lib/Sabre/VObject/Property.php
|
|
|
12
|