summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e5467ca65fad6f272ce7c3e7cafe4af780f2d51f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Popkornium18 <mail@popkornium18.de>
pkgname=audiotag
pkgver=0.7.3
pkgrel=2
pkgdesc="Simple command line audio tagger written in python3"
arch=("any")
url="https://github.com/Popkornium18/audiotag"
license=("MIT")
depends=("python-appdirs" "python-pytaglib" "python-prompt_toolkit")
makedepends=("python-setuptools")
source=("https://github.com/Popkornium18/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz")
sha256sums=("3d8576a5edd7fafb3308014f404b74b1df3fdfcb7c183fb31f45db8c4318247a")
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}"
}