cruxports/tagutil/Pkgfile

18 lines
514 B
Plaintext
Raw Normal View History

2022-02-05 20:39:19 +00: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: libyaml
2022-02-05 20:39:19 +00:00
# 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 -DPREFIX="/usr" ../src
2022-02-05 20:39:19 +00:00
make
make DESTDIR=$PKG install
}