summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorJeremy Audet2016-05-03 11:50:10 -0400
committerJeremy Audet2016-05-03 11:50:10 -0400
commit61c4f1038111cf779a56a700652d9020e785a897 (patch)
tree2915483c0bcc4a8704b223c5bc1a5319b9c97a92 /PKGBUILD
parent10dacce2c20a8259c1127b375b110a73cdd129cd (diff)
downloadaur-61c4f1038111cf779a56a700652d9020e785a897.tar.gz
Provide a minimum ffmpeg version
According to the libgroove readme, ffmpeg >= 3.0 is required. State so in the `depends` array.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index a85fc2c5f96f..a5bc73691a72 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,8 @@ pkgdesc='Library that provides decoding and encoding of audio on a playlist.'
arch=(i686 x86_64)
url='https://github.com/andrewrk/libgroove'
license=(MIT)
-depends=(chromaprint libebur128 libsoundio) # chromaprint provides ffmpeg
+# chromaprint provides ffmpeg, but we want to pin a minimum version
+depends=(chromaprint 'ffmpeg>=3.0' libebur128 libsoundio)
makedepends=(cmake yasm)
provides=(libgroove)
conflicts=(libgroove)