Files
extra/tagtool/PKGBUILD
2025-06-22 20:39:04 -05:00

26 lines
785 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=tagtool
pkgver=0.14.2
pkgrel=1
pkgdesc="Tool to edit tags in MP3 and Ogg Vorbis files"
url='https://github.com/impegoraro/tagtool'
license=('GPL-2')
arch=('i686' 'x86_64')
depends=('gtk' 'id3lib' 'libvorbis' 'mesa-libgl')
makedepends=('intltool' 'gettext-tiny')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/impegoraro/tagtool/archive/v${pkgver}.tar.gz")
sha512sums=('a825d8b124e79bd1f5006cca3cf846968b356e3c17f9c05dd866806c8d08eba1da6bcebf782c843611a9750bb19b426443a6200cd88446ffa03617f518550489')
build() {
cd "${pkgname}-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}