wok view gmime/receipt @ rev 6653

Fixed gdk-pixbuf. Added xpm and jpeg to be build into gdk-pixbuf instead of being just plugins. Fixes some missing icons and background from being missig in slitaz desktop.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Oct 11 01:06:19 2010 +0000 (2010-10-11)
parents 9f19aee613be
children ab563b6b9645
line source
1 # SliTaz package receipt.
3 PACKAGE="gmime"
4 VERSION="2.2.23"
5 CATEGORY="development"
6 SHORT_DESC="library for parsing messages using MIME"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="glib zlib"
9 BUILD_DEPENDS="glib-dev zlib-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://spruce.sourceforge.net/gmime"
12 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/gmime/2.2/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --disable-mono \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib $fs/usr
33 }