wok diff ayttm/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 11b5e93cb5f2
children 5f6c5106b1f5
line diff
     1.1 --- a/ayttm/receipt	Tue Jul 05 15:34:01 2016 +0300
     1.2 +++ b/ayttm/receipt	Fri Feb 21 18:28:59 2020 +0100
     1.3 @@ -6,13 +6,14 @@
     1.4  SHORT_DESC="Universal instant messenger client"
     1.5  MAINTAINER="devl547@gmail.com"
     1.6  LICENSE="GPL2"
     1.7 +WEB_SITE="http://ayttm.sourceforge.net/"
     1.8 +
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10 -WEB_SITE="http://ayttm.sourceforge.net/"
    1.11  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.12  
    1.13 -BUILD_DEPENDS="gtk+-dev zlib-dev audiofile-dev xcb-util-dev openssl-dev flex \
    1.14 -enchant-dev xorg-libXpm-dev libtool"
    1.15 -DEPENDS="gtk+ zlib audiofile xcb-util openssl enchant aspell xorg-libXpm"
    1.16 +BUILD_DEPENDS="audiofile-dev enchant-dev flex gtk+-dev libtool 
    1.17 +	openssl-dev xorg-libXpm-dev xcb-util-dev zlib-dev"
    1.18 +DEPENDS="aspell audiofile enchant gtk+ openssl xcb-util xorg-libXpm zlib"
    1.19  
    1.20  # Rules to configure and make the package.
    1.21  compile_rules()
    1.22 @@ -20,25 +21,27 @@
    1.23  	# remove -lfl
    1.24  	sed -i 's/LEXLIB=.*/LEXLIB=/' configure
    1.25  
    1.26 -	./configure \
    1.27 -		--prefix=/usr \
    1.28 -		--infodir=/usr/share/info \
    1.29 -		--mandir=/usr/share/man \
    1.30 -		--disable-webcam \
    1.31 -		--disable-esd \
    1.32 -		--disable-arts \
    1.33 -		--enable-lj \
    1.34 +	./configure				\
    1.35 +		--prefix=/usr			\
    1.36 +		--infodir=/usr/share/info	\
    1.37 +		--mandir=/usr/share/man		\
    1.38 +		--disable-webcam		\
    1.39 +		--disable-esd			\
    1.40 +		--disable-arts			\
    1.41 +		--enable-lj			\
    1.42  		$CONFIGURE_ARGS &&
    1.43 -	make && make install
    1.44 +	make &&
    1.45 +	make install
    1.46  }
    1.47  
    1.48  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.49  genpkg_rules()
    1.50  {
    1.51 -	mkdir -p $fs/usr/
    1.52 -	mkdir -p $fs/etc/
    1.53 -	cp -a $install/usr/bin $fs/usr
    1.54 -	cp -a $install/usr/lib $fs/usr
    1.55 -	cp -a $install/usr/share/ $fs/usr
    1.56 -	cp $install/usr/etc/ayttmrc $fs/etc/ayttmrc
    1.57 +	mkdir -p $fs/usr
    1.58 +	mkdir -p $fs/etc
    1.59 +
    1.60 +	cp -a $install/usr/bin		$fs/usr
    1.61 +	cp -a $install/usr/lib		$fs/usr
    1.62 +	cp -a $install/usr/share	$fs/usr
    1.63 +	cp $install/usr/etc/ayttmrc	$fs/etc/ayttmrc
    1.64  }