wok-next view x265/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 9278a60d6895
children 7d24131afd7d
line source
1 # SliTaz package receipt v2.
3 PACKAGE="x265"
4 VERSION="2.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="Free H.265/MPEG-H HEVC encoder"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.videolan.org/developers/x265.html"
11 TARBALL="${PACKAGE}_$VERSION.tar.gz"
12 WGET_URL="http://ftp.videolan.org/pub/videolan/x265/$TARBALL"
14 BUILD_DEPENDS="cmake yasm"
15 SPLIT="x265-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/build
21 cmake -DCMAKE_INSTALL_PREFIX=/usr ../source &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 case $PACKAGE in
29 x265) copy @std;;
30 *-dev) copy @dev;;
31 esac
32 }