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.
13 lines
203 B
13 lines
203 B
1 year ago
|
#!/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}
|