# Maintainer: Popkornium18 pkgname=audiotag pkgver=0.7.1 pkgrel=1 pkgdesc="Simple command line audio tagger written in python3" arch=("any") url="https://github.com/Popkornium18/audiotag" license=("MIT") depends=("python-pytaglib" "python-prompt_toolkit") makedepends=("python-setuptools") source=("https://github.com/Popkornium18/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz") sha256sums=("ae393f95270101a1e193d357e8ea7b5a232553c965b4adcbc5577676243e4db2") package() { cd ${srcdir}/${pkgname}-${pkgver} /usr/bin/python3 setup.py install --root="$pkgdir/" --optimize=1 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" install -Dm644 completion/${pkgname}.bash "$pkgdir/usr/share/bash-completion/completions/${pkgname}" }