Added a new template helper to run GNU automake stuff for a pkg.

--HG--
extra : convert_revision : 55608667a6245e3aa5c71b92ff7bfd9f6ca88c2a
This commit is contained in:
Juan RP 2008-10-11 06:14:02 +02:00
parent e0f1962789
commit 293de9c6ec
1 changed files with 18 additions and 0 deletions

18
helper-templates/automake.sh Executable file
View File

@ -0,0 +1,18 @@
#
# This helper runs the GNU autoconf tools and friends for a template.
# Optionally $automake_dir may be specified for a specific directory.
#
run_automake()
{
$PKGFS_MASTERDIR/bin/aclocal
$PKGFS_MASTERDIR/bin/libtoolize --automake
$PKGFS_MASTERDIR/bin/automake -a --foreign -i
$PKGFS_MASTERDIR/bin/autoconf
}
if [ -z "$automake_dir" ]; then
cd $wrksrc && run_automake
else
cd $wrksrc/$automake_dir && run_automake
fi