wok-next view x265/receipt @ rev 19856

Up dbus, lxdm, slitaz-configs, syslinux-slitaz-repack; add slitaz-next with all the Next-related hotfixes.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Sep 07 15:25:51 2017 +0300 (2017-09-07)
parents cf73576ccb13
children c4e53a39395a
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"
10 #HOST_ARCH="i486 arm"
12 TARBALL="${PACKAGE}_$VERSION.tar.gz"
13 WGET_URL="http://ftp.videolan.org/pub/videolan/x265/$TARBALL"
15 BUILD_DEPENDS="cmake yasm"
16 SPLIT="x265-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src/build
22 cmake -DCMAKE_INSTALL_PREFIX=/usr ../source &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 case $PACKAGE in
30 x265) copy @std;;
31 *-dev) copy @dev;;
32 esac
33 }