# HG changeset patch # User Christopher Rogers # Date 1307620320 0 # Node ID ad950661374cff446beaab729234cc1a15bc781a # Parent e058951422af76d9c20b4acf9e7514ef3ff16b33 xlogo: Fixed source variable. Fixed also for purging sources. diff -r e058951422af -r ad950661374c xlogo/receipt --- a/xlogo/receipt Wed Jun 08 23:38:19 2011 +0200 +++ b/xlogo/receipt Thu Jun 09 11:52:00 2011 +0000 @@ -14,14 +14,14 @@ compile_rules() { wget_url="http://downloads.tuxfamily.org/xlogo/common/xlogo.jar" - [ -f ${SOURCE_REPOSITORY:-$SRC}/xlogo.jar ] || - wget $wget_url -P ${SOURCE_REPOSITORY:-$SRC} + [ -f $SOURCES_REPOSITORY/xlogo.jar ] || + wget $wget_url -P $SOURCES_REPOSITORY } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib/xlogo - cp ${SOURCE_REPOSITORY:-$SRC}/xlogo.jar $fs/usr/lib/xlogo + cp $SOURCES_REPOSITORY/xlogo.jar $fs/usr/lib/xlogo }