summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMark Brand <mabrand@mabrand.nl>2010-08-29 09:40:18 (GMT)
committerMark Brand <mabrand@mabrand.nl>2010-08-29 09:40:18 (GMT)
commitab12b85a6786017a7df8b209fcb5c14f4a30f823 (patch)
tree2c94d65520b771e0397b38816c5cbc1fd64fd143 /Makefile
parent5af2bcb208c744d2e8eb66d81f7aad5511d95d7c (diff)
downloadmxe-ab12b85a6786017a7df8b209fcb5c14f4a30f823.zip
mxe-ab12b85a6786017a7df8b209fcb5c14f4a30f823.tar.gz
mxe-ab12b85a6786017a7df8b209fcb5c14f4a30f823.tar.bz2
upgrade packages curl freetype gcc glew gnutls gst* libarchive libevent libgcrypt pcre sqlite w32api
New requirement XZ Utils for unpacking w32api lzma archive.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 75113a6..d9e1234 100644
--- a/Makefile
+++ b/Makefile
@@ -35,8 +35,9 @@ UNPACK_ARCHIVE = \
$(if $(filter %.tgz, $(1)),tar xzf '$(1)', \
$(if $(filter %.tar.gz, $(1)),tar xzf '$(1)', \
$(if $(filter %.tar.bz2,$(1)),tar xjf '$(1)', \
+ $(if $(filter %.tar.lzma,$(1)),xz -dc -F lzma '$(1)' | tar -x, \
$(if $(filter %.zip, $(1)),unzip -q '$(1)', \
- $(error Unknown archive format: $(1))))))
+ $(error Unknown archive format: $(1)))))))
UNPACK_PKG_ARCHIVE = \
$(call UNPACK_ARCHIVE,$(PKG_DIR)/$($(1)_FILE))