wok rev 17839

Add ijs
author Richard Dunbar <mojo@slitaz.org>
date Mon Mar 23 17:00:05 2015 -0400 (2015-03-23)
parents d12ce34a0d9a
children 60193f2178a8
files ijs-dev/receipt ijs/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/ijs-dev/receipt	Mon Mar 23 17:00:05 2015 -0400
     1.3 @@ -0,0 +1,22 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="ijs-dev"
     1.7 +VERSION="0.35"
     1.8 +CATEGORY="office"
     1.9 +SHORT_DESC="IJS developement files"
    1.10 +MAINTAINER="mojo@slitaz.org"
    1.11 +LICENSE="GPL3"
    1.12 +WANTED="ijs"
    1.13 +WEB_SITE="http://openprinting.org"
    1.14 +
    1.15 +DEPENDS="ijs"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +  mkdir -p $fs/usr/lib 
    1.21 +  mkdir -p $fs/usr/include	
    1.22 +  cp -a $install/usr/lib/*.la $fs/usr/lib
    1.23 +  cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.24 +  cp -a $install/usr/include/ijs $fs/usr/include
    1.25 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/ijs/receipt	Mon Mar 23 17:00:05 2015 -0400
     2.3 @@ -0,0 +1,33 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="ijs"
     2.7 +VERSION="0.35"
     2.8 +CATEGORY="office"
     2.9 +SHORT_DESC="IJS API function"
    2.10 +MAINTAINER="mojo@slitaz.org"
    2.11 +LICENSE="GPL3"
    2.12 +WEB_SITE="http://openprinting.org"
    2.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    2.14 +WGET_URL="https://www.openprinting.org/download/ijs/download/$TARBALL"
    2.15 +
    2.16 +DEPENDS=""
    2.17 +BUILD_DEPENDS="wget"
    2.18 +
    2.19 +# Rules to configure and make the package.
    2.20 +compile_rules()
    2.21 +{
    2.22 +	./configure \
    2.23 +                    --prefix=/usr \
    2.24 +                    --mandir=/usr/share/man \
    2.25 +                    --enable-shared \
    2.26 +                    --disable-static \
    2.27 +                    $CONFIGURE_ARGS && make && make install
    2.28 +}
    2.29 +
    2.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.31 +genpkg_rules()
    2.32 +{
    2.33 +	mkdir -p $fs/usr/lib
    2.34 +        cp -a $install/usr/bin $fs/usr
    2.35 +        cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.36 +}