diff options
author | Mark Brand <mabrand@mabrand.nl> | 2010-08-29 09:40:18 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2010-08-29 09:40:18 (GMT) |
commit | ab12b85a6786017a7df8b209fcb5c14f4a30f823 (patch) | |
tree | 2c94d65520b771e0397b38816c5cbc1fd64fd143 /Makefile | |
parent | 5af2bcb208c744d2e8eb66d81f7aad5511d95d7c (diff) | |
download | mxe-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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)) |