mirror of
https://github.com/wez/wezterm.git
synced 2024-11-26 16:34:23 +03:00
14 lines
349 B
Bash
14 lines
349 B
Bash
|
#!/bin/bash
|
||
|
# Sync the vendored sources from a pixman URL
|
||
|
# eg:
|
||
|
# wget 'https://cairographics.org/releases/pixman-0.42.2.tar.gz'
|
||
|
# import-pixman.sh path/to/pixman-0.42.2.tar.gz
|
||
|
set -x
|
||
|
TARBALL=$1
|
||
|
|
||
|
rm -rf pixman
|
||
|
tar xf $TARBALL
|
||
|
mv pixman-* pixman
|
||
|
rm -rf pixman/{test,demos,configure,aclocal.m4,compile,ltmain.sh,configure.ac,config.sub,config.guess}
|
||
|
|