wok-next diff urxvt/receipt @ rev 20559

rrdtool: syntax error
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 07 17:41:33 2018 +0300 (2018-04-07)
parents c5439f74a6c6
children d5aab818505e
line diff
     1.1 --- a/urxvt/receipt	Wed Nov 15 16:27:09 2017 +0200
     1.2 +++ b/urxvt/receipt	Sat Apr 07 17:41:33 2018 +0300
     1.3 @@ -13,31 +13,29 @@
     1.4  
     1.5  BUILD_DEPENDS="xorg-libX11-dev xorg-libICE-dev gdk-pixbuf-dev \
     1.6  startup-notification-dev xorg-libXmu-dev xorg-libXft-dev perl-dev ncurses-extra"
     1.7 -SPLIT="urxvt-full"
     1.8 +SPLIT="urxvt-full:full"
     1.9  
    1.10  compile_rules() {
    1.11 -	rm -r $install-full 2>/dev/null
    1.12 -	cp -a $src $src-full
    1.13 +	case $SET in
    1.14 +		'')
    1.15 +			./configure \
    1.16 +				--disable-everything \
    1.17 +				$CONFIGURE_ARGS &&
    1.18 +			make && make install
    1.19 +			;;
    1.20 +		full)
    1.21 +			./configure \
    1.22 +				--enable-everything \
    1.23 +				--enable-256-color \
    1.24 +				--with-terminfo=/usr/share/terminfo \
    1.25 +				$CONFIGURE_ARGS &&
    1.26 +			make && make install || return 1
    1.27  
    1.28 -	./configure \
    1.29 -		--disable-everything \
    1.30 -		$CONFIGURE_ARGS &&
    1.31 -	make && make install || return 1
    1.32 -
    1.33 -	cd $src-full
    1.34 -	./configure \
    1.35 -		--enable-everything \
    1.36 -		--enable-256-color \
    1.37 -		--with-terminfo=/usr/share/terminfo \
    1.38 -		$CONFIGURE_ARGS &&
    1.39 -	make && make DESTDIR=$install-full install || return 1
    1.40 -
    1.41 -	install -Dm0644 $stuff/urxvt-full.desktop \
    1.42 -		$install-full/usr/share/applications/urxvt-full.desktop
    1.43 -
    1.44 -	R="$install-full/usr/share/terminfo"
    1.45 -	mkdir -p $R
    1.46 -	tic -s -o $R $src-full/doc/etc/rxvt-unicode.terminfo
    1.47 +			R="$install/usr/share/terminfo"
    1.48 +			mkdir -p $R
    1.49 +			tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo
    1.50 +			;;
    1.51 +	esac
    1.52  }
    1.53  
    1.54  genpkg_rules() {
    1.55 @@ -47,7 +45,7 @@
    1.56  			DEPENDS="xorg-libX11"
    1.57  			;;
    1.58  		urxvt-full)
    1.59 -			install=$install-full copy @std
    1.60 +			copy @std
    1.61  			CAT="utilities|everything enabled"
    1.62  			DEPENDS="fontconfig freetype gdk-pixbuf glib perl perl-core \
    1.63  			startup-notification xorg-libX11 xorg-libXft xorg-libXmu \