wok-next view libheif/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
children a3c581bf52b8
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libheif"
4 VERSION="1.1.0"
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="http://www.libde265.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/strukturag/libheif/archive/v$VERSION.tar.gz"
14 BUILD_DEPENDS="automake libtool libde265-dev x265-dev libjpeg-turbo-dev \
15 libpng16-dev"
16 SPLIT="libheif-dev"
18 compile_rules() {
19 ./autogen.sh &&
20 ./configure $CONFIGURE_ARGS &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libheif)
28 copy @std
29 DEPENDS="libde265 libjpeg-turbo libpng16 x265"
30 ;;
31 *-dev)
32 copy @dev
33 ;;
34 esac
35 }