#!/bin/sh

echo "Installing to $1..."
echo $1 > installpath
mkdir $1
cp * $1
cd $1
make
chmod ugo+rx zipper
