wok view ayttm/receipt @ rev 19269

Compress manpages.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jul 04 14:47:05 2016 +0300 (2016-07-04)
parents fd3826d3788a
children 11b5e93cb5f2
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://ayttm.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
13 BUILD_DEPENDS="gtk+-dev zlib-dev audiofile-dev xcb-util-dev openssl-dev flex \
14 enchant-dev xorg-libXpm-dev libtool"
15 DEPENDS="gtk+ zlib audiofile xcb-util openssl enchant aspell xorg-libXpm"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # remove -lfl
21 sed -i 's/LEXLIB=.*/LEXLIB=/' configure
22 ./configure --prefix=/usr --infodir=/usr/share/info \
23 --mandir=/usr/share/man $CONFIGURE_ARGS \
24 --disable-webcam --disable-esd --disable-arts --disable-webcam \
25 --enable-lj &&
26 make && make install
28 cook_compress_manpages
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/
35 mkdir -p $fs/etc/
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib $fs/usr
38 cp -a $install/usr/share/ $fs/usr
39 cp $install/usr/etc/ayttmrc $fs/etc/ayttmrc
40 }