wok-6.x diff ijs/receipt @ rev 22822
Add emu8051
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Feb 06 12:27:36 2020 +0100 (2020-02-06) |
parents | |
children | af8d823a3077 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ijs/receipt Thu Feb 06 12:27:36 2020 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="ijs" 1.7 +VERSION="0.35" 1.8 +CATEGORY="office" 1.9 +SHORT_DESC="IJS API function" 1.10 +MAINTAINER="mojo@slitaz.org" 1.11 +LICENSE="GPL3" 1.12 +WEB_SITE="http://openprinting.org" 1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 +WGET_URL="https://www.openprinting.org/download/ijs/download/$TARBALL" 1.15 + 1.16 +DEPENDS="" 1.17 +BUILD_DEPENDS="wget" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + ./configure \ 1.23 + --prefix=/usr \ 1.24 + --mandir=/usr/share/man \ 1.25 + --enable-shared \ 1.26 + --disable-static \ 1.27 + $CONFIGURE_ARGS && make && make install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr/lib 1.34 + cp -a $install/usr/bin $fs/usr 1.35 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.36 +}