wok view gmime/receipt @ rev 13253

syslinux: updates locales
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 15 21:33:42 2012 +0200 (2012-08-15)
parents 32fc82463121
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="gmime"
4 VERSION="2.6.7"
5 CATEGORY="development"
6 SHORT_DESC="library for parsing messages using MIME"
7 MAINTAINER="allan316@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://spruce.sourceforge.net/gmime"
10 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:3}/$TARBALL"
12 DEPENDS="glib gpgme zlib"
13 BUILD_DEPENDS="glib-dev gpgme-dev zlib-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --enable-smime \
21 --disable-mono \
22 --disable-static \
23 --build=$HOST_SYSTEM \
24 --host=$HOST_SYSTEM &&
25 make && make DESTDIR=$DESTDIR install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }