Remove sys/gtk*

This commit is contained in:
pancake 2018-09-16 00:03:18 +02:00
parent 9fadc2ab9f
commit d1e5b9a566
2 changed files with 0 additions and 36 deletions

View File

@ -1,18 +0,0 @@
#!/bin/sh
if [ -x /usr/bin/pacman ]; then
sudo pacman -S gtk2
elif [ -x /usr/bin/apt-get ]; then
sudo apt-get install gtk2-2.0-dev
elif [ -x /opt/local/bin/port ]; then
echo "Installing cairo.."
sudo port install cairo +quartz+no_x11 || exit 1
echo "Installing pango.."
sudo port install pango +quartz+no_x11 || exit 1
echo "Installing GTK2.."
sudo port install gtk2 +quartz+no_x11 || exit 1
else
echo "Cannot install gtk :("
exit 1
fi
:> .gtk-done.sh

View File

@ -1,18 +0,0 @@
#!/bin/sh
# find root
cd "$(dirname "$PWD/$0")"
mkdir -p _work
cd _work
if [ -d gtkaml ]; then
cd gtkaml
svn up
else
svn co https://gtkaml.googlecode.com/svn/trunk gtkaml
cd gtkaml
fi
sh autogen.sh --prefix=/usr && \
make && \
sudo make install