wok-next view libheif/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents 7d24131afd7d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libheif"
4 VERSION="1.3.2"
5 CATEGORY="video"
6 SHORT_DESC="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL3"
9 WEB_SITE="https://www.libde265.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/strukturag/libheif/releases/download/v$VERSION/$TARBALL"
14 BUILD_DEPENDS="libde265-dev x265-dev libjpeg-turbo-dev libpng-dev"
15 SPLIT="$PACKAGE-dev"
17 compile_rules() {
18 ./configure \
19 --disable-static \
20 $CONFIGURE_ARGS &&
21 fix libtool &&
22 make &&
23 make install
24 }
26 genpkg_rules() {
27 case $PACKAGE in
28 libheif)
29 copy @std
30 DEPENDS="libde265 libjpeg-turbo libpng x265"
31 ;;
32 *-dev)
33 copy @dev
34 ;;
35 esac
36 }