19 lines
503 B
Plaintext
19 lines
503 B
Plaintext
# Description: an initial tagging script for notmuch mail
|
|
# URL: https://github.com/afewmail/afew
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: notmuch python3-chardet python3-dkim python3-setuptools-scm
|
|
|
|
name=afew
|
|
version=3.0.1
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/a/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install \
|
|
--root=$PKG \
|
|
--optimize=1 \
|
|
--skip-build
|
|
}
|