diff options
author | Martchus | 2022-07-09 13:48:17 +0200 |
---|---|---|
committer | Martchus | 2022-07-09 13:48:17 +0200 |
commit | 59de53d34c3ebbf177682b01d3828f546bc36857 (patch) | |
tree | 2f3af80299893e2518bb3b6e7d67795c71398b5e | |
parent | 0da7c6378f118c3f3fff037a4c18cb5e5e3fa923 (diff) | |
download | aur-59de53d34c3ebbf177682b01d3828f546bc36857.tar.gz |
Use library dependencies
-rw-r--r-- | .SRCINFO | 7 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 6 insertions, 5 deletions
@@ -1,7 +1,7 @@ pkgbase = tageditor pkgdesc = A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska pkgver = 3.7.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/Martchus/tageditor arch = i686 arch = x86_64 @@ -16,8 +16,9 @@ pkgbase = tageditor makedepends = qt5-tools makedepends = mesa makedepends = reflective-rapidjson - depends = qtutilities - depends = tagparser + depends = libqtutilities.so + depends = libtagparser.so + depends = libc++utilities.so depends = desktop-file-utils depends = xdg-utils depends = qt5-webengine @@ -15,11 +15,11 @@ _json_export=${TAGEDITOR_JSON_EXPORT:-ON} _reponame=tageditor pkgname=tageditor pkgver=3.7.3 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64' 'armv6h' 'armv7h' 'aarch64') pkgdesc='A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska' license=('GPL') -depends=('qtutilities' 'tagparser' 'desktop-file-utils' 'xdg-utils') +depends=('libqtutilities.so' 'libtagparser.so' 'libc++utilities.so' 'desktop-file-utils' 'xdg-utils') [[ $_webview_provider == none ]] && [[ $_js_provider == none ]] && depends+=('qt5-base') [[ $_webview_provider == webkit ]] && depends+=('qt5-webkit') [[ $_webview_provider == webengine ]] && depends+=('qt5-webengine') |