18 lines
545 B
Plaintext
18 lines
545 B
Plaintext
# Description: command-line tool for editing audio file tags
|
|
# URL: https://github.com/kaworu/tagutil
|
|
# Maintainer: John McQuah, jmcquah at disroot dot org
|
|
# Depends on: pkg-config cmake libyaml
|
|
# Nice to have: taglib libvorbis flac jansson
|
|
|
|
name=tagutil
|
|
version=3.1
|
|
release=1
|
|
source=("https://github.com/kaworu/$name/archive/v$version/$name-v$version.tar.gz")
|
|
|
|
build() {
|
|
mkdir $name-$version/build && cd $name-$version/build
|
|
cmake -DCMAKE_BUILD_TYPE=RELEASE -DCMAKE_INSTALL_PREFIX="/usr" ../src
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|