# HG changeset patch # User Hans-G?nter Theisgen # Date 1618155735 -3600 # Node ID ef4ee17e784f8a2982c38771d2541e0bc4e08ae8 # Parent 1b5e36efea1d6af1fa36219ee0a12b0874791170 created recipe for autoconf-archive 2021.02.19) diff -r 1b5e36efea1d -r ef4ee17e784f autoconf-archive/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autoconf-archive/description.txt Sun Apr 11 16:42:15 2021 +0100 @@ -0,0 +1,18 @@ +The GNU Autoconf Archive is a collection of more than 500 macros for GNU 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. + +This official web site of this project is located at +https://www.gnu.org/software/autoconf-archive/. +All available information concerning this project is referenced from there. diff -r 1b5e36efea1d -r ef4ee17e784f autoconf-archive/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autoconf-archive/receipt Sun Apr 11 16:42:15 2021 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="autoconf-archive" +VERSION="2021.02.19" +CATEGORY="development" +SHORT_DESC="Collection of GNU Autoconf macros." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL" +WEB_SITE="https://www.gnu.org/software/autoconf-archive/" + +TARBALL="$PACKAGE-$VERSION.tar.xz" +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="autoconf" + +HOST_ARCH="any" + +compile_rules() +{ + ./configure \ + $CONFIGURE_ARGS && + make && + make install +} + +genpkg_rules() +{ + mkdir -p $fs/usr/share + cp -a $install/usr/share/aclocal $fs/usr/share +}