changeset 809:87ab1f983122

multimedia/x264: initial import, closes #1754
author David Demelier <markand@malikania.fr>
date Sun, 18 Aug 2019 22:25:00 +0200
parents 9272b38b063d
children f67b2b0f31ba
files multimedia/x264/x264.sh multimedia/x264/x264.sha1
diffstat 2 files changed, 60 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/x264/x264.sh	Sun Aug 18 22:25:00 2019 +0200
@@ -0,0 +1,59 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=x264
+PKGVERSION=20190811-2245
+PKGREVISION=1
+PKGLICENSE="GPLv2"
+PKGSUMMARY="opensource H.264 video encoder"
+PKGDOWNLOAD="https://download.videolan.org/pub/videolan/$PKGNAME/snapshots/$PKGNAME-snapshot-$PKGVERSION.tar.bz2"
+PKGOPTIONS="FFMPEG"
+
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${FFMPEG:=yes}
+
+if [ "$FFMPEG" = "yes" ]; then
+	PKGDEPENDS="multimedia/ffmpeg $PKGDEPENDS"
+	with_ffmpeg="--enable-swscale --enable-lavf"
+else
+	with_ffmpeg="--disable-swscale --disable-lavf"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-snapshot-$PKGVERSION
+	tar xvf $PKGNAME-snapshot-$PKGVERSION.tar.bz2
+	cd $PKGNAME-snapshot-$PKGVERSION
+
+	sed -i -e "s|/bin/bash|/bin/sh|" configure
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--prefix= \
+		--enable-shared \
+		--enable-static
+	make
+	make install DESTDIR=$DESTDIR
+
+	cd ..
+	rm -rf $PKGNAME-snapshot-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/x264/x264.sha1	Sun Aug 18 22:25:00 2019 +0200
@@ -0,0 +1,1 @@
+4bde55aad0ed265755b6c7b7ce5293a8ba0ca830  x264-snapshot-20190811-2245.tar.bz2