annotate plugins/libcalendaring/lib/get_sabre_vobject.sh @ 43:771f6803cc4b default tip

somehow lost the correctly updated metadata so e.g. 'mail' package wasn't being imported
author Charlie Root
date Sun, 26 Jan 2025 13:13:49 -0500
parents 888e774ee983
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
1 #!/bin/sh
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
2
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
3 # Download and install the Sabre\Vobject library for this plugin
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
4
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
5 wget 'https://github.com/fruux/sabre-vobject/archive/2.1.0.tar.gz' -O sabre-vobject-2.1.0.tar.gz
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
6 tar xf sabre-vobject-2.1.0.tar.gz
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
7
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
8 mv sabre-vobject-2.1.0/lib/* .
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
9 rm -rf sabre-vobject-2.1.0
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
10
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
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
888e774ee983 libcalendar plugin as distributed
Charlie Root
parents:
diff changeset
12