Initial commit

This commit is contained in:
Nico Schottelius 2005-11-09 13:00:18 +01:00
commit 610b3fe35b
2 changed files with 42 additions and 0 deletions

1
README Normal file
View File

@ -0,0 +1 @@
Miscellaneous scripts used for development

41
update-git+cogito.sh Executable file
View File

@ -0,0 +1,41 @@
#!/bin/sh
# Nico Schottelius
# Date: Mit Nov 9 12:57:04 CET 2005
# Last Modified: -
#
# Install latest git and cogito to $INSTALL_PREFIX/$name and
# link the binaries to $BINDIR
# Needs git and cogito to work!
BASE_GET=http://www.kernel.org/pub/scm/
PROJECTS="git/git.git cogito/cogito.git"
BUILDDIR=/home/nico/build
INSTALL_PREFIX=/usr/packages
BINDIR=/usr/local/bin
for project in $PROJECTS; do
realname=$(echo $project | sed -e 's,.*/,,' -e 's/\.git$//')
echo "Working on $realname (in $BUILDDIR/$realname) ... "
if [ ! -d "$BUILDDIR/$realname" ]; then
echo "Cloning $realname"
cg-clone "${BASE_GET}${project}" "$BUILDDIR/$realname"
else
echo "Updating $realname from \"origin\""
cd "$BUILDDIR/$realname" || exit 1
cg-update origin
fi
cd "$BUILDDIR/$realname"
version=$(cg-object-id)
echo "Installing $realname (Version: $version)"
DDIR=$INSTALL_PREFIX/$realname-$version
make "prefix=$DDIR" all
make "prefix=$DDIR" install
echo "Linking files to $BINDIR ..."
for file in "$DDIR/bin/"*; do
ln -sf $file "$BINDIR"
done
done