tagutil: clean up dependencies (cmake, pkgconf now in core)

This commit is contained in:
John McQuah 2022-09-17 10:01:45 -04:00
parent 57384a6333
commit 67be08fd1f
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxLU65XSTiZBfeJ21W2sWHvpkmXIP/AqWZMcc/oxBpG/9P5m6zeAXmLL4K/2wHEjoF496KoE67rP2N/7bWYmKawk= RWTTPlFarK9CxD65NioWL4l4F957J9lzDFYWG0cFS1lS00OT2w5RZJR+wIlSOs3m/mkaEzAii0c+5F+j68ZsVKhwwiED2aQwogU=
SHA256 (Pkgfile) = 80a06cee5a09aa56cecc1b9c019c8da1b590263328151093eb87b2fba95dec69 SHA256 (Pkgfile) = a8e955502ce3e45705f3561499ee942b800dea1db0f813fb4e0c09d72c2ebe5b
SHA256 (.footprint) = a8d50129924db3c9d22f3861663bf52ba96a0ddd331874f5d48417f0b9f25c44 SHA256 (.footprint) = a8d50129924db3c9d22f3861663bf52ba96a0ddd331874f5d48417f0b9f25c44
SHA256 (tagutil-v3.1.tar.gz) = a5a88f8f40c3654e902066e4aba8e6c4e2c89fcf64ca823d81db80c3dad41a80 SHA256 (tagutil-v3.1.tar.gz) = a5a88f8f40c3654e902066e4aba8e6c4e2c89fcf64ca823d81db80c3dad41a80

View File

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