Commit 62146ea3 authored by Jerzy Grzegorek's avatar Jerzy Grzegorek Committed by Peter Korsgaard
Browse files

change package tarball compression to xz whenever possible



[Peter: leave change xz tarball format to not end up with circular deps]
Signed-off-by: default avatarJerzy Grzegorek <jerzy.grzegorek@trzebnica.net>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 159c692c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -32,9 +32,9 @@ package, with an example :

On line 7, we declare the version of the package.

On line 8 and 9, we declare the name of the tarball and the location
of the tarball on the Web. Buildroot will automatically download the
tarball from this location.
On line 8 and 9, we declare the name of the tarball (xz-ed tarball recommended)
and the location of the tarball on the Web. Buildroot will automatically
download the tarball from this location.

On line 10, we tell Buildroot to install the package to the staging
directory. The staging directory, located in +output/staging/+
+3 −3
Original line number Diff line number Diff line
@@ -32,9 +32,9 @@ with an example :

On line 7, we declare the version of the package.

On line 8 and 9, we declare the name of the tarball and the location
of the tarball on the Web. Buildroot will automatically download the
tarball from this location.
On line 8 and 9, we declare the name of the tarball (xz-ed tarball recommended)
and the location of the tarball on the Web. Buildroot will automatically
download the tarball from this location.

On line 10, we tell Buildroot to install the package to the staging
directory. The staging directory, located in +output/staging/+
+2 −2
Original line number Diff line number Diff line
@@ -62,8 +62,8 @@ system is based on hand-written Makefiles or shell scripts.

The Makefile begins on line 7 to 11 with metadata information: the
version of the package (+LIBFOO_VERSION+), the name of the
tarball containing the package (+LIBFOO_SOURCE+) the
Internet location at which the tarball can be downloaded from
tarball containing the package (+LIBFOO_SOURCE+) (xz-ed tarball recommended)
the Internet location at which the tarball can be downloaded from
(+LIBFOO_SITE+), the license (+LIBFOO_LICENSE+) and file with the
license text (+LIBFOO_LICENSE_FILES+). All variables must start with
the same prefix, +LIBFOO_+ in this case. This prefix is always the
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
################################################################################

AUTOCONF_VERSION = 2.69
AUTOCONF_SOURCE = autoconf-$(AUTOCONF_VERSION).tar.xz
AUTOCONF_SITE = $(BR2_GNU_MIRROR)/autoconf

AUTOCONF_LICENSE = GPLv3+ with exceptions
+1 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
################################################################################

AUTOMAKE_VERSION = 1.11.6
AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.xz
AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
AUTOMAKE_LICENSE = GPLv2+
AUTOMAKE_LICENSE_FILES = COPYING
Loading