wok-6.x annotate gtkhtml2_viewer/receipt @ rev 7799
Up libsigsegv (2.9)
author | Paul Issott <paul@slitaz.org> |
---|---|
date | Fri Dec 24 13:35:54 2010 +0000 (2010-12-24) |
parents | 4aabf59ff93a |
children | cf2970f2bd80 |
rev | line source |
---|---|
erjo@1241 | 1 # SliTaz package receipt. |
erjo@1241 | 2 |
erjo@1241 | 3 PACKAGE="gtkhtml2_viewer" |
erjo@5504 | 4 VERSION="0.27" |
pascal@1423 | 5 CATEGORY="network" |
erjo@1241 | 6 SHORT_DESC="HTML Viwer plugins for claws-mail." |
erjo@1241 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2483 | 8 DEPENDS="curl claws-mail expat gtk+ libxml2 xorg-libX11 xorg-libXau \ |
pascal@2483 | 9 xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext xorg-libXfixes \ |
pascal@2516 | 10 xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage" |
erjo@1241 | 11 BUILD_DEPENDS="curl-dev claws-mail-dev" |
erjo@1241 | 12 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@1280 | 13 WEB_SITE="http://www.claws-mail.org/plugins.php" |
pankso@1280 | 14 WGET_URL="http://www.claws-mail.org/downloads/plugins/$TARBALL" |
erjo@1241 | 15 |
erjo@1241 | 16 # Rules to configure and make the package. |
erjo@1241 | 17 compile_rules() |
erjo@1241 | 18 { |
erjo@1241 | 19 cd $src |
erjo@1241 | 20 ./configure --prefix=/usr \ |
erjo@1241 | 21 --infodir=/usr/share/info \ |
erjo@1241 | 22 --disable-accessibility \ |
pascal@2483 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@2483 | 24 make && |
erjo@1241 | 25 make DESTDIR=$PWD/_pkg install |
erjo@1241 | 26 } |
erjo@1241 | 27 |
erjo@1241 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1241 | 29 genpkg_rules() |
erjo@1241 | 30 { |
erjo@1241 | 31 mkdir -p $fs/usr/lib/claws-mail/plugins |
erjo@1241 | 32 cp -a $_pkg/usr/lib/claws-mail/plugins/*.so* $fs/usr/lib/claws-mail/plugins/ |
erjo@1241 | 33 } |
erjo@1241 | 34 |