wok view ayttm/receipt @ rev 12684

slitaz-configs: Fix new Openbox file
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 01 23:45:58 2012 +0200 (2012-05-01)
parents 5289d9f2f8dc
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="ayttm"
4 VERSION="0.6.3"
5 CATEGORY="network"
6 SHORT_DESC="Universal instant messenger client"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://ayttm.sourceforge.net/"
10 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
11 BUILD_DEPENDS="gtk+-dev zlib-dev audiofile-dev xcb-util-dev openssl-dev flex \
12 enchant-dev xorg-libXpm-dev libtool"
13 DEPENDS="gtk+ zlib audiofile xcb-util openssl enchant aspell xorg-libXpm"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS \
21 --disable-webcam --disable-esd --disable-arts --disable-webcam \
22 --enable-lj &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
30 mkdir -p $fs/etc/
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib $fs/usr
33 cp -a $install/usr/share/ $fs/usr
34 cp $install/usr/etc/ayttmrc $fs/etc/ayttmrc
35 }