mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
* convert all .bep files to follow shell syntax
* rename all .bep files to .recipe
This commit is contained in:
46
sys-devel/m4/m4-1.4.15.recipe
Normal file
46
sys-devel/m4/m4-1.4.15.recipe
Normal file
@@ -0,0 +1,46 @@
|
||||
DESCRIPTION="m4 - GNU macro processor"
|
||||
HOMEPAGE="http://www.gnu.org/software/m4/"
|
||||
SRC_URI="http://ftp.gnu.org/gnu/m4/m4-1.4.15.tar.gz"
|
||||
CHECKSUM_MD5="5649a2e593b6c639deae9e72ede777dd"
|
||||
REVISION="1"
|
||||
STATUS_HAIKU="broken"
|
||||
DEPEND=""
|
||||
|
||||
BUILD()
|
||||
{
|
||||
cd m4-1.4.15
|
||||
echo "AC_CONFIG_MACRO_DIR([m4])" >> configure.ac
|
||||
echo >> configure.ac
|
||||
echo "LT_INIT" >> configure.ac
|
||||
rm aclocal.m4
|
||||
libtoolize --force --copy --install
|
||||
aclocal -I m4
|
||||
autoreconf
|
||||
prefix=$(finddir B_PACKAGE_LINKS_DIRECTORY)/m4-1.4.15
|
||||
./configure --prefix=$prefix \
|
||||
--datarootdir=$prefix/data \
|
||||
--sbindir=$prefix/bin \
|
||||
--includedir=$prefix/develop/headers \
|
||||
--sysconfdir=$prefix/settings \
|
||||
--docdir=$prefix/documentation/packages/m4 \
|
||||
--infodir=$prefix/documentation/info \
|
||||
--mandir=$prefix/documentation/man \
|
||||
--disable-rpath --with-gnu-ld \
|
||||
--enable-changeword
|
||||
make
|
||||
}
|
||||
|
||||
INSTALL()
|
||||
{
|
||||
cd m4-1.4.15
|
||||
make install
|
||||
}
|
||||
|
||||
TEST()
|
||||
{
|
||||
cd m4-1.4.15
|
||||
make check
|
||||
}
|
||||
|
||||
LICENSE="GNU GPL v3"
|
||||
COPYRIGHT="2000, 2005-2010 Free Software Foundation, Inc."
|
||||
Reference in New Issue
Block a user