wok annotate scribus/receipt @ rev 15182
bozohttpd, cherokee, hiawatha, nginx: add PROVIDE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Aug 21 18:41:33 2013 +0000 (2013-08-21) |
parents | 0fc3fe6d4459 |
children | c765927c5087 |
rev | line source |
---|---|
pascal@3899 | 1 # SliTaz package receipt. |
pascal@3899 | 2 |
pascal@3899 | 3 PACKAGE="scribus" |
pascal@11588 | 4 VERSION="1.4.0" |
pascal@3899 | 5 CATEGORY="office" |
pascal@3899 | 6 SHORT_DESC="professional publishing software." |
pascal@3899 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
pascal@3899 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pascal@3899 | 10 WEB_SITE="http://www.scribus.net/" |
pascal@3899 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@15002 | 12 |
pascal@3903 | 13 DEPENDS="ghostscript libQtGui libQtXml libQtNetwork cups lcms libxml2 \ |
pascal@3903 | 14 gcc-lib-base aspell python krb5 podofo" |
pascal@8937 | 15 BUILD_DEPENDS="cmake qmake Qt4-dev freetype freetype-dev \ |
pascal@3899 | 16 cairo cairo-dev tiff tiff-dev lcms lcms-dev jpeg jpeg-dev libpng libpng-dev \ |
pascal@6109 | 17 cups cups-dev fontconfig fontconfig-dev libxml2 libxml2-dev podofo-dev \ |
pascal@3899 | 18 ghostscript python python-dev python-pil pkg-config aspell aspell-dev \ |
pascal@3899 | 19 libboost-dev openssl openssl-dev zlib tk" |
pascal@3899 | 20 |
pascal@3899 | 21 # Rules to configure and make the package. |
pascal@3899 | 22 compile_rules() |
pascal@3899 | 23 { |
pascal@3899 | 24 cd $src |
pascal@3899 | 25 cmake -DCMAKE_INSTALL_PREFIX=/usr . && |
gokhlayeh@11574 | 26 make $MAKEFLAGS && |
pascal@15002 | 27 make DESTDIR=$DESTDIR install |
pascal@3899 | 28 } |
pascal@3899 | 29 |
pascal@3899 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@3899 | 31 genpkg_rules() |
pascal@3899 | 32 { |
pascal@3899 | 33 mkdir -p $fs/usr/share $fs/usr/lib |
pascal@15002 | 34 cp -a $install/usr/share/scribus $fs/usr/share |
pascal@15002 | 35 cp -a $install/usr/lib/scribus $fs/usr/lib |
pascal@15002 | 36 cp -a $install/usr/bin $fs/usr |
pascal@15002 | 37 cp -a $install/usr/share/mimelnk $fs/usr/share |
pascal@3899 | 38 cp -a stuff/* $fs |
pascal@3899 | 39 } |
pascal@3899 | 40 |