wok-next view lzham_codec/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 35a20e111081
children df20b2110f7e
line source
1 # SliTaz package receipt.
3 PACKAGE="lzham_codec"
4 VERSION="1.0"
5 CATEGORY="base-system"
6 SHORT_DESC="Lossless data compression codec with LZMA-like ratios but 1.5x-8x faster decompression speed."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/richgel999/lzham_codec"
10 TAGS="compression"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="$GITHUB/richgel999/lzham_codec/tarball/v1_0_stable1"
15 DEPENDS="gcc-lib-base"
16 BUILD_DEPENDS="cmake"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cmake . -DBUILD_X64=OFF -DCMAKE_BUILD_TYPE=Release \
22 -DCMAKE_INSTALL_PREFIX=/usr &&
23 make && make install
25 mkdir -p $install/usr/bin
26 cp -a $src/bin_linux/lzhamtest $install/usr/bin
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 copy bin/ lib/
33 }