wok annotate dcmtk/receipt @ rev 21859

updated sarg and sarg-php (2.3.1 -> 2.3.11)
author Hans-G?nter Theisgen
date Thu Sep 19 16:26:43 2019 +0100 (2019-09-19)
parents e4d238a76a77
children bfabe25c21ff
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@20669 10 WEB_SITE="https://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 }