mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-06 06:58:57 +02:00
56 lines
1.8 KiB
Bash
56 lines
1.8 KiB
Bash
SUMMARY="A collection of freely re-usable Autoconf macros"
|
|
DESCRIPTION="The GNU Autoconf Archive is a collection of more than 500 macros \
|
|
for [GNU Autoconf](https://www.gnu.org/software/autoconf) that have been \
|
|
contributed as free software by friendly supporters of the cause from all \
|
|
over the Internet. Every single one of those macros can be re-used without \
|
|
imposing any restrictions whatsoever on the licensing of the generated \
|
|
configure script. In particular, it is possible to use all those macros in \
|
|
configure scripts that are meant for non-free software. This policy is unusual \
|
|
for a Free Software Foundation project. The FSF firmly believes that software \
|
|
ought to be free, and software licenses like the GPL are specifically \
|
|
designed to ensure that derivative work based on free software must be \
|
|
free as well. In case of Autoconf, however, an exception has been made, \
|
|
because Autoconf is at such a pivotal position in the software development \
|
|
tool chain that the benefits from having this tool available as widely as \
|
|
possible outweigh the disadvantage that some authors may choose to use it, \
|
|
too, for proprietary software."
|
|
HOMEPAGE="https://www.gnu.org/software/autoconf-archive/"
|
|
COPYRIGHT="2018 Autoconf Archive Maintainers"
|
|
LICENSE="GNU GPL v3
|
|
Autoconf Configure Script Exception v3.0"
|
|
REVISION="1"
|
|
SOURCE_URI="http://ftpmirror.gnu.org/autoconf-archive/autoconf-archive-2018.03.13.tar.xz"
|
|
CHECKSUM_SHA256="6175f90d9fa64c4d939bdbb3e8511ae0ee2134863a2c7bf8d9733819efa6e159"
|
|
SOURCE_DIR="autoconf-archive-2018.03.13"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
autoconf_archive = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:awk
|
|
cmd:cmp
|
|
cmd:make
|
|
cmd:makeinfo
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
runConfigure ./configure
|
|
make $jobArgs
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
rm -f "$dataDir"/autoconf-archive/COPYING*
|
|
}
|