aboutsummaryrefslogtreecommitdiff
path: root/libs_video/libvpx
diff options
context:
space:
mode:
Diffstat (limited to 'libs_video/libvpx')
-rwxr-xr-xlibs_video/libvpx/libvpx.build63
1 files changed, 63 insertions, 0 deletions
diff --git a/libs_video/libvpx/libvpx.build b/libs_video/libvpx/libvpx.build
new file mode 100755
index 0000000..5527b7c
--- /dev/null
+++ b/libs_video/libvpx/libvpx.build
@@ -0,0 +1,63 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=libvpx
+VERSION=1.3.0
+BUILD=1
+DEPENDS=('glib >= 2.38.2-1')
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: libvpx (WebM VP8 codec)
+${NAME}:
+${NAME}: WebM is an open, royalty-free, media file format designed for the
+${NAME}: web.
+${NAME}:
+${NAME}: WebM defines the file container structure, video and audio formats.
+${NAME}: WebM files consist of video streams compressed with the VP8 video
+${NAME}: codec and audio streams compressed with the Vorbis audio codec. The
+${NAME}: WebM file structure is based on the Matroska container.
+${NAME}:
+${NAME}: Homepage: http://webmproject.org
+EOF
+
+# Sources
+
+SRCNAME[0]=${NAME}
+SRCVERS[0]=v${VERSION}
+SRCPACK[0]=http://webm.googlecode.com/files/${SRCNAME[0]}-${SRCVERS[0]}.tar.bz2
+SRCCOPY[0]="BSD3"
+
+build0()
+{
+sed -i 's|$(LIBSUBDIR)/pkgconfig|/share/pkgconfig|g' libs.mk
+CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \
+./configure \
+ --prefix="${SYS_DIR[usr]}" \
+ --libdir="${SYS_DIR[lib]}" \
+ --disable-install-docs \
+ --disable-install-srcs \
+ --enable-shared \
+ --enable-pic \
+ --enable-runtime-cpu-detect \
+ --enable-postproc \
+ --enable-vp9 \
+ --enable-vp8
+make ${JOBS} verbose=1
+make install DIST_DIR="${PKG}${SYS_DIR[usr]}"
+doc AUTHORS
+changelog CHANGELOG
+rm -f ${PKG}${SYS_DIR[lib]}/*.a
+}