You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
DIRNAME=gpac-$(date +%Y%m%d)
|
|
|
|
git clone --depth 1 https://github.com/gpac/gpac.git ${DIRNAME}
|
|
|
|
rm -rf ${DIRNAME}/.git
|
|
rm -rf ${DIRNAME}/extra_lib
|
|
|
|
tar cJf ${DIRNAME}.tar.xz ${DIRNAME}
|