wok-current view ijs/receipt @ rev 24272
updated perltidy (20200110 -> 20211029)
| author | Hans-Günter Theisgen | 
|---|---|
| date | Sun Jan 02 10:48:51 2022 +0100 (2022-01-02) | 
| parents | |
| children | af8d823a3077 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="ijs"
     4 VERSION="0.35"
     5 CATEGORY="office"
     6 SHORT_DESC="IJS API function"
     7 MAINTAINER="mojo@slitaz.org"
     8 LICENSE="GPL3"
     9 WEB_SITE="http://openprinting.org"
    10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    11 WGET_URL="https://www.openprinting.org/download/ijs/download/$TARBALL"
    13 DEPENDS=""
    14 BUILD_DEPENDS="wget"
    16 # Rules to configure and make the package.
    17 compile_rules()
    18 {
    19 	./configure \
    20                     --prefix=/usr \
    21                     --mandir=/usr/share/man \
    22                     --enable-shared \
    23                     --disable-static \
    24                     $CONFIGURE_ARGS && make && make install
    25 }
    27 # Rules to gen a SliTaz package suitable for Tazpkg.
    28 genpkg_rules()
    29 {
    30 	mkdir -p $fs/usr/lib
    31         cp -a $install/usr/bin $fs/usr
    32         cp -a $install/usr/lib/*.so* $fs/usr/lib
    33 }