pidgin/purple-plugin-pack

Filling out the structure for further plugin additions here. Hopefully
org.guifications.plugins.smartear
2007-07-28, rekkanoryo
5ce77e47e23b
file isExecutable
Filling out the structure for further plugin additions here. Hopefully
before too much longer I'll have real code here.
#! /bin/sh
PACKAGE="purple-plugin_pack"
(intltoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have intltool installed to compile $PACKAGE";
echo;
exit;
}
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have libtool installed to compile $PACKAGE";
echo;
exit;
}
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have automake installed to compile $PACKAGE";
echo;
exit;
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo;
echo "You must have autoconf installed to compile $PACKAGE";
echo;
exit;
}
echo "Generating configuration files for $PACKAGE, please wait...."
echo;
echo "Running libtoolize, please ignore non-fatal messages...."
echo n | libtoolize --copy --force || exit;
echo;
libtoolize -c -f --automake
intltoolize --force --copy
aclocal -I m4 || exit;
autoheader || exit;
automake --add-missing --copy
autoconf || exit;
automake || exit;
echo "Running ./configure $@"
echo;
./configure $@