initial import
This commit is contained in:
29
tagutil/PKGBUILD
Normal file
29
tagutil/PKGBUILD
Normal file
@@ -0,0 +1,29 @@
|
||||
# Maintainer: Jesus E. <heckyel@riseup.net>
|
||||
|
||||
pkgname=tagutil
|
||||
pkgver=3.1
|
||||
pkgrel=2
|
||||
pkgdesc="Scriptable music files tags tool and editor"
|
||||
arch=('i686' 'x86_64')
|
||||
url='https://github.com/kAworu/tagutil'
|
||||
license=('Simplified-BSD')
|
||||
depends=('libyaml' 'taglib' 'flac' 'libvorbis' 'jansson')
|
||||
makedepends=('cmake')
|
||||
options=(!emptydirs)
|
||||
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/kAworu/tagutil/archive/v${pkgver}.tar.gz")
|
||||
sha512sums=('a5b2140250f21eddd0154231608546b78c5646bb4bcb6ed7b11a3cbade2435c322d83c19a2a2e6852cdacca19a2b1cd6e33c0b71147d6873679d2b41db5a06d9')
|
||||
|
||||
build() {
|
||||
cmake -S ${pkgname}-${pkgver}/src \
|
||||
-B build \
|
||||
-DPREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=RELEASE \
|
||||
-DWITH_ID3V1=YES \
|
||||
-Wno-dev
|
||||
make -C build
|
||||
}
|
||||
|
||||
package() {
|
||||
make -C build DESTDIR="${pkgdir}" install
|
||||
install -Dm644 ${pkgname}-${pkgver}/LICENSE -t "${pkgdir}/usr/share/licenses/$pkgname"
|
||||
}
|
||||
Reference in New Issue
Block a user