autoconf: missing perl dependency.
[pkgfs.git] / helper-templates / automake.sh
blob6d237945bc11fd0ae5aebcfa6a8dff1a6a2db8e5
2 # This helper runs the GNU autoconf tools and friends for a template.
3 # Optionally $automake_dir may be specified for a specific directory.
6 run_automake()
8 $PKGFS_MASTERDIR/bin/aclocal
9 $PKGFS_MASTERDIR/bin/libtoolize --automake
10 $PKGFS_MASTERDIR/bin/automake -a --foreign -i
11 $PKGFS_MASTERDIR/bin/autoconf
14 if [ -z "$automake_dir" ]; then
15 cd $wrksrc && run_automake
16 else
17 cd $wrksrc/$automake_dir && run_automake