mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
34 lines
852 B
Plaintext
34 lines
852 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.11.1.tar.gz"
|
|
CHECKSUM_MD5="4ee7f0ff5f0e467d58b6bd5da96b1c74"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd automake-1.11.1
|
|
prefix=$(finddir B_PACKAGE_LINKS_DIRECTORY)/automake-1.11.1
|
|
PERL="/bin/env perl" ./configure --prefix=$prefix \
|
|
--datarootdir=$prefix/data \
|
|
--sbindir=$prefix/bin \
|
|
--includedir=$prefix/develop/headers \
|
|
--sysconfdir=$prefix/settings \
|
|
--docdir=$prefix/documentation/packages/automake \
|
|
--infodir=$prefix/documentation/info \
|
|
--mandir=$prefix/documentation/man
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd automake-1.11.1
|
|
make install
|
|
}
|
|
|
|
TEST {
|
|
cd automake-1.11.1
|
|
make check
|
|
}
|
|
|
|
LICENSE="GNU GPL v2"
|
|
COPYRIGHT="2009 Free Software Foundation, Inc."
|