Files
haikuports/sys-devel/automake/automake-1.13.recipe
Oliver Tappe 60aba35d64 * convert all .bep files to follow shell syntax
* rename all .bep files to .recipe
2013-03-29 16:31:03 +00:00

35 lines
753 B
Plaintext

DESCRIPTION="automake - Used to generate Makefile.in from Makefile.am"
HOMEPAGE="http://www.gnu.org/software/automake/"
SRC_URI="http://ftp.gnu.org/gnu/automake/automake-1.13.tar.gz"
CHECKSUM_MD5="255661c7729d04ef2f8f58d076c89ecc"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd automake-1.13
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
COMMON_DATA=`finddir B_COMMON_DATA_DIRECTORY`
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--datadir=$COMMON_DATA \
--docdir=$COMMON_DOCS/doc/automake \
--infodir=$COMMON_DOCS/info \
--mandir=$COMMON_DOCS/man
make
}
INSTALL()
{
cd automake-1.13
make install
}
TEST()
{
cd automake-1.13
make check
}
LICENSE="GNU GPL v2"
COPYRIGHT="2012 Free Software Foundation, Inc."