wok annotate lzham_codec/receipt @ rev 21617

updated opencv and opencv-dev (3.4.6 -> 4.1.0)
author Hans-G?nter Theisgen
date Fri May 24 18:01:06 2019 +0100 (2019-05-24)
parents 36b17616c07e
children df7ee1e0dc61
rev   line source
pascal@17542 1 # SliTaz package receipt.
pascal@17542 2
pascal@17542 3 PACKAGE="lzham_codec"
pascal@17542 4 VERSION="1.0"
pascal@17542 5 CATEGORY="base-system"
pascal@17542 6 SHORT_DESC="Lossless data compression codec with LZMA-like ratios but 1.5x-8x faster decompression speed."
pascal@17542 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@17542 8 LICENSE="MIT"
pascal@17542 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@17542 10 WEB_SITE="https://github.com/richgel999/lzham_codec"
pascal@17542 11 WGET_URL="$WEB_SITE/archive/v${VERSION/./_}_release.tar.gz"
pascal@18336 12 TAGS="compression"
pascal@17542 13
pascal@17542 14 DEPENDS="gcc-lib-base"
pascal@17542 15 BUILD_DEPENDS="wget cmake"
pascal@17542 16
pascal@17542 17 # Rules to configure and make the package.
pascal@17542 18 compile_rules()
pascal@17542 19 {
pascal@17544 20 cmake . -DBUILD_X64=OFF -DCMAKE_BUILD_TYPE=Release && make
pascal@17542 21 }
pascal@17542 22
pascal@17542 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@17542 24 genpkg_rules()
pascal@17542 25 {
pascal@17542 26 mkdir -p $fs/usr/bin
pascal@17542 27 cp -a $src/bin_linux/lzhamtest $fs/usr/bin
pascal@17542 28 }