2019-11-02 23:09:02 +01:00
|
|
|
# Description: icalendar parser library for Python
|
|
|
|
# URL: https://github.com/collective/icalendar
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: python3-dateutil python3-pytz
|
|
|
|
|
|
|
|
name=python3-icalendar
|
2021-10-16 16:17:14 +02:00
|
|
|
version=4.0.9
|
2019-11-02 23:09:02 +01:00
|
|
|
release=1
|
|
|
|
source=(https://files.pythonhosted.org/packages/source/i/icalendar/icalendar-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd icalendar-$version
|
2020-11-03 21:03:25 +00:00
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install \
|
2019-11-02 23:09:02 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--optimize=1 \
|
|
|
|
--skip-build \
|
|
|
|
--root=$PKG
|
|
|
|
}
|