summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: a3a1857851fa39ea3d0962d0702768941f1a03c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Maintainer: Martin Rys <https://rys.pw/#contact_me>
# Previous maintainer: Bijaya Dangol <dangoldbj23@gmail.com>

pkgname=python-hsaudiotag3k
_reponame=hsaudiotag3k
pkgver=1.1.3.post1
pkgrel=4
pkgdesc="Read metadata (tags) of mp3, mp4, wma, ogg, flac and aiff files (python3 version)"
url="https://pypi.org/project/hsaudiotag3k"
arch=(any)
license=('BSD')
depends=('python')
makedepends=('python-setuptools')
source=("https://pypi.org/packages/source/${_reponame::1}/${_reponame}/${_reponame}-$pkgver.tar.gz")
sha256sums=('ef60e9210d4727e82f0095a686cb07b676d055918f0c59c5bfa8598da03e59d1')

build() {
	cd "$srcdir/${_reponame}-$pkgver"
	python setup.py build
}

package() {
	cd "$srcdir/${_reponame}-$pkgver"
	python setup.py install --root="$pkgdir"
}