From: Rene Wagner Date: Fri, 29 Jul 2005 20:42:27 +0000 (+0000) Subject: gpe.bbclass: add GPE_SRC_COMPRESSION variable to allow switching between gz and bz2 X-Git-Tag: Release-2010-05/1~9453^2~4019 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fa8f61c5fa5afb0ff161086849f682e0885c06b;p=openembedded.git gpe.bbclass: add GPE_SRC_COMPRESSION variable to allow switching between gz and bz2 --- diff --git a/classes/gpe.bbclass b/classes/gpe.bbclass index 3b0cd0a001..88c2314fe7 100644 --- a/classes/gpe.bbclass +++ b/classes/gpe.bbclass @@ -1,5 +1,6 @@ DEPENDS_prepend = "coreutils-native virtual/libintl intltool-native " -SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz" +GPE_SRC_COMPRESSION ?= "gz" +SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.${GPE_SRC_COMPRESSION}" FILES_${PN} += "${datadir}/gpe ${datadir}/application-registry" inherit gettext