xdg-utils/xdg-utils-git_checkout.sh
Troy Dawson 7a42fbdcfd RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/xdg-utils#25d402dc37cbd57bbecf13e630ce30fabb648c51
2020-10-15 13:55:40 -07:00

18 lines
311 B
Bash
Executable File

#!/bin/bash
MODULE=xdg-utils
VERSION=1.1.0
DATE=$(date +%Y%m%d)git
set -x
rm -rf $MODULE
git clone git://anongit.freedesktop.org/git/xdg/xdg-utils $MODULE/
pushd $MODULE
git archive master --format tar --prefix=${MODULE}-${VERSION}/ | gzip -9 > ../${MODULE}-${VERSION}-${DATE}.tar.gz
popd
rm -rf $MODULE