cruxports/tagutil/Pkgfile

18 lines
545 B
Plaintext
Raw Normal View History

2022-02-05 15:39:19 -05:00
# 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
}