audacious: added gettext and iconv dependency. (#18584)

This commit is contained in:
Toyohisa Kameyama 2020-09-09 18:23:01 +09:00 committed by GitHub
parent 8494d26c0a
commit 4472914847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,9 @@ class Audacious(AutotoolsPackage):
depends_on('autoconf', type='build') depends_on('autoconf', type='build')
depends_on('automake', type='build') depends_on('automake', type='build')
depends_on('libtool', type='build') depends_on('libtool', type='build')
depends_on('glib') depends_on('gettext')
depends_on('iconv', type='link')
depends_on('glib', type='link')
depends_on('qt') depends_on('qt')
def autoreconf(self, spec, prefix): def autoreconf(self, spec, prefix):