2012-05-10 09:11:28 +00:00
|
|
|
#!/bin/sh -x
|
|
|
|
|
|
|
|
rm -rf /tmp/fish_pkg
|
|
|
|
mkdir -p /tmp/fish_pkg/
|
2012-05-30 04:14:19 +00:00
|
|
|
if make DESTDIR=/tmp/fish_pkg install
|
2012-05-10 09:11:28 +00:00
|
|
|
then
|
|
|
|
echo "Root written to /tmp/fish_pkg/"
|
2012-05-25 06:56:07 +00:00
|
|
|
if /Developer/usr/bin/packagemaker --doc ./build_tools/fish_shell.pmdoc --out ~/fish_built/fishfish.pkg
|
2012-05-10 09:11:28 +00:00
|
|
|
then
|
2012-05-25 06:56:07 +00:00
|
|
|
echo "Package written to ~/fish_built/fishfish.pkg"
|
2012-05-10 09:11:28 +00:00
|
|
|
else
|
|
|
|
echo "Package could not be written"
|
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
echo "Root could not be written"
|
|
|
|
fi
|