contrib/khard/Pkgfile

25 lines
664 B
Plaintext
Raw Permalink Normal View History

2019-12-29 11:40:19 +01:00
# Description: Console carddav client
# URL: https://github.com/scheibler/khard/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-atomicwrites python3-configobj python3-ruamel-yaml python3-unidecode python3-vobject
name=khard
2023-11-27 09:10:20 +01:00
version=0.19.1
2019-12-29 11:40:19 +01:00
release=1
source=(https://files.pythonhosted.org/packages/source/k/khard/$name-$version.tar.gz)
build() {
cd $name-$version
2023-11-26 09:00:38 +01:00
2020-11-03 19:55:30 +01:00
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --skip-build \
2019-12-29 11:40:19 +01:00
--optimize=1 \
--prefix=/usr \
--root=$PKG
2023-11-26 09:00:38 +01:00
2020-11-03 19:55:30 +01:00
if [ -e /lib/zsh || /usr/lib/zsh ]; then
2019-12-29 11:40:19 +01:00
install -vDm 644 misc/zsh/_* \
-t $PKG/usr/share/zsh/site-functions/
fi
}