mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
31 lines
735 B
Plaintext
31 lines
735 B
Plaintext
DESCRIPTION="autoconf - Used to create autoconfiguration files"
|
|
HOMEPAGE="http://www.gnu.org/software/autoconf/"
|
|
SRC_URI="http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.xz"
|
|
CHECKSUM_MD5="50f97f4159805e374639a73e2636f22e"
|
|
REVISION="1"
|
|
STATUS_HAIKU="stable"
|
|
DEPEND=""
|
|
BUILD {
|
|
cd autoconf-2.69
|
|
libtoolize --force --copy --install
|
|
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
|
|
--mandir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/man \
|
|
--infodir=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`/info \
|
|
--datadir=`finddir B_COMMON_DATA_DIRECTORY`
|
|
make
|
|
}
|
|
|
|
INSTALL {
|
|
cd autoconf-2.69
|
|
make install
|
|
}
|
|
|
|
TEST {
|
|
cd autoconf-2.69
|
|
make check
|
|
}
|
|
|
|
LICENSE="GNU GPL v2
|
|
GNU GPL v3"
|
|
COPYRIGHT="1992-2012 Free Software Foundation, Inc."
|