summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-09-13 16:14:08 +0200
committerRobin Gareus <robin@gareus.org>2016-09-13 16:14:40 +0200
commit53ee3e2e722eeac80a16dc4fcf15dc6c34e1e099 (patch)
treeaf62d7c2ef438cbb6b738831153d02907ae902ce /wscript
parent3193aa93ce456549067465129006da2b685b5bdb (diff)
Add support for built-in file/url unzip/untar
This introduces new build-dependency: libarchive (http://www.libarchive.org/)
Diffstat (limited to 'wscript')
-rw-r--r--wscript1
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript b/wscript
index ae6d35b878..c76e3b6ccc 100644
--- a/wscript
+++ b/wscript
@@ -970,6 +970,7 @@ def configure(conf):
autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE', atleast_version='1.0.18', mandatory=True)
autowaf.check_pkg(conf, 'giomm-2.4', uselib_store='GIOMM', atleast_version='2.2', mandatory=True)
autowaf.check_pkg(conf, 'libcurl', uselib_store='CURL', atleast_version='7.0.0', mandatory=True)
+ autowaf.check_pkg(conf, 'libarchive', uselib_store='ARCHIVE', atleast_version='3.0.0', mandatory=True)
autowaf.check_pkg(conf, 'liblo', uselib_store='LO', atleast_version='0.26', mandatory=True)
autowaf.check_pkg(conf, 'taglib', uselib_store='TAGLIB', atleast_version='1.6', mandatory=True)
autowaf.check_pkg(conf, 'vamp-sdk', uselib_store='VAMPSDK', atleast_version='2.1', mandatory=True)