mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
27 lines
771 B
Bash
27 lines
771 B
Bash
|
#!/bin/sh
|
|||
|
|
|||
|
# This script helps you to download and compress the
|
|||
|
# sourcecode for ffmpeg from its svn server.
|
|||
|
# Copyright (c) 2008 alkos333 <me@alkos333.net>
|
|||
|
|
|||
|
# Based on ffmpeg-mksrctarball.sh (SlackBuilds.org, Slackware 12.0)
|
|||
|
|
|||
|
# Thanks to Antonio Hern<72>ndez Blas for a suggestion on SBo mailing list
|
|||
|
|
|||
|
set -e
|
|||
|
|
|||
|
PRGNAM=hdapsd
|
|||
|
VERSION=$(date +"%Y%m%d")
|
|||
|
GITSERVER=git://repo.or.cz/hdapsd.git
|
|||
|
|
|||
|
echo "--> Downloading sourcecode from $GITSERVER"
|
|||
|
git clone $GITSERVER $PRGNAM-$VERSION 2>&1
|
|||
|
|
|||
|
echo "--> Making the sourcecode tarball: $PRGNAM-$VERSION.tar.bz2 "
|
|||
|
tar -c $PRGNAM-$VERSION/ | bzip2 -9 > $PRGNAM-$VERSION.tar.bz2
|
|||
|
|
|||
|
echo "--> Erasing the sourcecode directory: $PRGNAM-$VERSION/"
|
|||
|
rm -rf $PRGNAM-$VERSION/
|
|||
|
|
|||
|
echo "--> Sourcecode tarball for $PRGNAM: $PRGNAM-$VERSION.tar.bz2"
|