wok diff dwm/receipt @ rev 17455

syslinux/iso2exe: avoid a possible deadlock in progress bar
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 18 12:32:12 2014 +0100 (2014-12-18)
parents 223b265f40fd
children 5d53e8ccbc8d
line diff
     1.1 --- a/dwm/receipt	Sat Sep 07 22:59:13 2013 +0000
     1.2 +++ b/dwm/receipt	Thu Dec 18 12:32:12 2014 +0100
     1.3 @@ -7,9 +7,10 @@
     1.4  MAINTAINER="pankso@slitaz.org"
     1.5  LICENSE="MIT"
     1.6  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.7 -WEB_SITE="http://www.suckless.org/dwm/"
     1.8 +WEB_SITE="http://dwm.suckless.org/"
     1.9  WGET_URL="http://dl.suckless.org/dwm/$TARBALL"
    1.10  TAGS="wm window-manager"
    1.11 +HOST_ARCH="i486 arm"
    1.12  
    1.13  DEPENDS="xorg-libX11 xorg-xsetroot"
    1.14  BUILD_DEPENDS="xorg-libX11-dev xorg-xproto xorg-xineramaproto \
    1.15 @@ -18,9 +19,8 @@
    1.16  # Rules to configure and make the package.
    1.17  compile_rules()
    1.18  {
    1.19 -	cd $src
    1.20 -	# From blue to brown and have lighter grey
    1.21 -	sed -i s/'#0066ff'/'#754800'/g config.def.h
    1.22 +	# From blue to grey and have lighter grey
    1.23 +	sed -i s/'#0066ff'/'#222222'/g config.def.h
    1.24  	sed -i s/'#cccccc'/'#f1efeb'/g config.def.h
    1.25  	# 6 tag-mask
    1.26  	sed -i s/', "7", "8", "9"'// config.def.h
    1.27 @@ -28,7 +28,7 @@
    1.28  	sed -i s/'1 << 8,'/'0,     '/ config.def.h
    1.29  	# [Shift]+[Alt]+[Enter]
    1.30  	sed -i s/uxterm/xterm/ config.def.h
    1.31 -	make
    1.32 +	make CC=${HOST_SYSTEM}-gcc
    1.33  }
    1.34  
    1.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.36 @@ -37,7 +37,6 @@
    1.37  	mkdir -p $fs/usr/bin
    1.38  	cp -a $src/dwm $fs/usr/bin
    1.39  	cp -a $stuff/dwm-session $fs/usr/bin
    1.40 -	cp -a $stuff/dwmbox $fs/usr/bin
    1.41  	chown 0.0 $fs/usr/bin/*
    1.42  }
    1.43