wok annotate dcmtk/receipt @ rev 18897

syslinux/isohybrid.exe add -r support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 14 22:06:06 2016 +0100 (2016-02-14)
parents
children a78610b2eb47
rev   line source
pascal@18160 1 # SliTaz package receipt.
pascal@18160 2
pascal@18160 3 PACKAGE="dcmtk"
pascal@18160 4 VERSION="3.6.0"
pascal@18160 5 CATEGORY="misc"
pascal@18160 6 SHORT_DESC="The DICOM Toolkit."
pascal@18160 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18160 8 LICENSE="other"
pascal@18160 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@18160 10 WEB_SITE="http://dicom.offis.de/dcmtk"
pascal@18160 11 WGET_URL="ftp://dicom.offis.de/pub/dicom/offis/software/$PACKAGE/$PACKAGE${VERSION//./}/$TARBALL"
pascal@18160 12
pascal@18160 13 DEPENDS="libxml2 tiff libpng libwrap"
pascal@18160 14 BUILD_DEPENDS="libxml2-dev tiff-dev libpng-dev zlib-dev libwrap-dev"
pascal@18160 15
pascal@18160 16 # Rules to configure and make the package.
pascal@18160 17 compile_rules()
pascal@18160 18 {
pascal@18160 19 ./configure --prefix=/usr \
pascal@18160 20 --sysconfdir=/etc/dcmtk \
pascal@18160 21 --mandir=/usr/share/man \
pascal@18160 22 $CONFIGURE_ARGS &&
pascal@18160 23 make -j 1 &&
pascal@18160 24 make DESTDIR=$DESTDIR install
pascal@18160 25 }
pascal@18160 26
pascal@18160 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18160 28 genpkg_rules()
pascal@18160 29 {
pascal@18160 30 cp -a $install/* $fs/
pascal@18160 31 }