Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
Use patched liblzma software to fix broken build temporary
Browse files Browse the repository at this point in the history
  • Loading branch information
repeatedly committed Jan 11, 2017
1 parent c40246e commit 1140ad9
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions config/software/liblzma.rb
@@ -0,0 +1,47 @@
#
# Copyright 2014 Chef Software, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

name "liblzma"
default_version "5.2.3"

license "Public-Domain"
license_file "COPYING"
skip_transitive_dependency_licensing true

source url: "http://tukaani.org/xz/xz-#{version}.tar.gz",
md5: "ef68674fb47a8b8e741b34e429d86e9d"

relative_path "xz-#{version}"

build do
env = with_standard_compiler_flags(with_embedded_path)
# liblzma properly uses CFLAGS for C compilation and CPPFLAGS for common
# flags used across tools such as windres. Don't put anything in it
# that can be misinterpreted by windres.
env["CPPFLAGS"] = "-I#{install_dir}/embedded/include" if windows?

config_command = [
"--disable-debug",
"--disable-dependency-tracking",
"--disable-doc",
"--disable-scripts",
]
config_command << "--disable-nls" if windows?

configure(*config_command, env: env)

make "install", env: env
end

0 comments on commit 1140ad9

Please sign in to comment.