Files
haikuports/sys-devel/libtool/libtool-2.4.2.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

33 lines
698 B
Plaintext

DESCRIPTION="libtool - a generic library support script"
HOMEPAGE="http://www.gnu.org/software/libtool"
SRC_URI="ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.2.tar.gz"
CHECKSUM_MD5="d2f3b7d4627e69e13514a40e72a24d50"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND=""
BUILD()
{
cd libtool-2.4.2
./bootstrap
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--datarootdir=`finddir B_COMMON_DATA_DIRECTORY` \
--infodir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/info \
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man
make
}
INSTALL()
{
cd libtool-2.4.2
make install
}
TEST()
{
cd libtool-2.4.2
make check
}
LICENSE="GNU GPL v2"
COPYRIGHT="2004-2011 Free Software Foundation, Inc."