wok rev 24036
created recipe for autoconf-archive 2021.02.19)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Apr 11 16:42:15 2021 +0100 (2021-04-11) |
parents | 1b5e36efea1d |
children | 469f8561ac86 |
files | autoconf-archive/description.txt autoconf-archive/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/autoconf-archive/description.txt Sun Apr 11 16:42:15 2021 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +The GNU Autoconf Archive is a collection of more than 500 macros for GNU Autoconf 1.5 +that have been contributed as free software by friendly supporters of the cause 1.6 +from all over the Internet. 1.7 +Every single one of those macros can be re-used without imposing any restrictions 1.8 +whatsoever on the licensing of the generated configure script. 1.9 +In particular, it is possible to use all those macros in configure scripts 1.10 +that are meant for non-free software. 1.11 +This policy is unusual for a Free Software Foundation project. 1.12 +The FSF firmly believes that software ought to be free, and software licenses like 1.13 +the GPL are specifically designed to ensure that derivative work based on free 1.14 +software must be free as well. In case of Autoconf, however, an exception has been made, 1.15 +because Autoconf is at such a pivotal position in the software development tool chain 1.16 +that the benefits from having this tool available as widely as possible outweigh the 1.17 +disadvantage that some authors may choose to use it, too, for proprietary software. 1.18 + 1.19 +This official web site of this project is located at 1.20 +https://www.gnu.org/software/autoconf-archive/. 1.21 +All available information concerning this project is referenced from there.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/autoconf-archive/receipt Sun Apr 11 16:42:15 2021 +0100 2.3 @@ -0,0 +1,30 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="autoconf-archive" 2.7 +VERSION="2021.02.19" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="Collection of GNU Autoconf macros." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="GPL" 2.12 +WEB_SITE="https://www.gnu.org/software/autoconf-archive/" 2.13 + 2.14 +TARBALL="$PACKAGE-$VERSION.tar.xz" 2.15 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 2.16 + 2.17 +DEPENDS="autoconf" 2.18 + 2.19 +HOST_ARCH="any" 2.20 + 2.21 +compile_rules() 2.22 +{ 2.23 + ./configure \ 2.24 + $CONFIGURE_ARGS && 2.25 + make && 2.26 + make install 2.27 +} 2.28 + 2.29 +genpkg_rules() 2.30 +{ 2.31 + mkdir -p $fs/usr/share 2.32 + cp -a $install/usr/share/aclocal $fs/usr/share 2.33 +}