wok view libjpeg62/receipt @ rev 18429

busybox: add shutdown
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Sep 21 17:56:57 2015 +0200 (2015-09-21)
parents b7319995b37e
children 762b649a4d73
line source
1 PACKAGE="libjpeg62"
2 VERSION="6b"
3 CATEGORY="x-window"
4 SHORT_DESC="JPEG shared libs."
5 MAINTAINER="paul@slitaz.org"
6 LICENSE="MIT"
7 WEB_SITE="http://www.ijg.org/"
8 TARBALL="libjpeg6b_6b.orig.tar.gz"
9 WGET_URL="ftp://ftp.debian.org/debian/pool/main/libj/libjpeg6b/$TARBALL"
10 TAGS="jpeg jpg"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --enable-shared --prefix=/usr \
17 --mandir=/usr/share/man $CONFIGURE_ARGS &&
18 make
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $src/.libs/*.so.62* $fs/usr/lib
26 }