Skip to content
Snippets Groups Projects
Commit ec8f744a authored by Daniel Pfeifer's avatar Daniel Pfeifer Committed by Brad King
Browse files

Add script to update liblzma from upstream

parent 7808ba08
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
set -e
set -x
shopt -s dotglob
readonly name="liblzma"
readonly ownership="liblzma upstream <xz-devel@tukaani.org>"
readonly subtree="Utilities/cmliblzma"
readonly repo="http://git.tukaani.org/xz.git"
readonly tag="v5.0.5"
readonly shortlog=false
readonly paths="
COPYING
src/common/common_w32res.rc
src/common/sysdefs.h
src/common/tuklib_integer.h
src/liblzma/
"
extract_source () {
git_archive
pushd "${extractdir}/${name}-reduced"
mv src/common .
mv src/liblzma .
rmdir src
popd
}
. "${BASH_SOURCE%/*}/update-third-party.bash"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment