[arch-commits] Commit in ffmpegsource/repos (6 files)

Maxime Gauduin alucryd at nymeria.archlinux.org
Fri Jul 12 08:01:02 UTC 2013


    Date: Friday, July 12, 2013 @ 10:01:02
  Author: alucryd
Revision: 93965

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  ffmpegsource/repos/community-staging-i686/
  ffmpegsource/repos/community-staging-i686/PKGBUILD
    (from rev 93964, ffmpegsource/trunk/PKGBUILD)
  ffmpegsource/repos/community-staging-i686/autoconf.patch
    (from rev 93964, ffmpegsource/trunk/autoconf.patch)
  ffmpegsource/repos/community-staging-x86_64/
  ffmpegsource/repos/community-staging-x86_64/PKGBUILD
    (from rev 93964, ffmpegsource/trunk/PKGBUILD)
  ffmpegsource/repos/community-staging-x86_64/autoconf.patch
    (from rev 93964, ffmpegsource/trunk/autoconf.patch)

-----------------------------------------+
 community-staging-i686/PKGBUILD         |   47 ++++++++++++++++++++++++++++++
 community-staging-i686/autoconf.patch   |   11 +++++++
 community-staging-x86_64/PKGBUILD       |   47 ++++++++++++++++++++++++++++++
 community-staging-x86_64/autoconf.patch |   11 +++++++
 4 files changed, 116 insertions(+)

Copied: ffmpegsource/repos/community-staging-i686/PKGBUILD (from rev 93964, ffmpegsource/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2013-07-12 08:01:02 UTC (rev 93965)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+
+pkgname=ffmpegsource
+pkgver=755
+pkgrel=1
+pkgdesc="A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/ffmpegsource/"
+license=('MIT')
+depends=('ffmpeg')
+makedepends=('svn')
+options=('!libtool')
+source=("${pkgname}::svn+http://ffmpegsource.googlecode.com/svn/trunk/"
+        'autoconf.patch')
+sha256sums=('SKIP'
+            '2cfa7d2e0219a5c8df9a50fe2460a1a1e6b69df10e6d9eee1d723766e62535e7')
+
+pkgver() {
+  cd "${SRCDEST}"/${pkgname}
+
+  svnversion | tr -d [A-z]
+}
+
+prepare() {
+  cd "${srcdir}"/${pkgname}
+
+  patch -Np1 -i ../autoconf.patch
+}
+
+build() {
+  cd "${srcdir}"/${pkgname}
+
+  ./autogen.sh --prefix=/usr --enable-shared --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/ffmpegsource
+  install -m 644 COPYING "${pkgdir}"/usr/share/licenses/ffmpegsource/LICENSE
+}
+
+# vim: ts=2 sw=2 et:

Copied: ffmpegsource/repos/community-staging-i686/autoconf.patch (from rev 93964, ffmpegsource/trunk/autoconf.patch)
===================================================================
--- community-staging-i686/autoconf.patch	                        (rev 0)
+++ community-staging-i686/autoconf.patch	2013-07-12 08:01:02 UTC (rev 93965)
@@ -0,0 +1,11 @@
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -6,7 +6,7 @@ pkgconfig_DATA = ffms2.pc
+ 
+ dist_doc_DATA = doc/ffms2-api.html doc/ffms2-changelog.html doc/style.css
+ 
+-INCLUDES = -I. -I$(top_srcdir)/include -I$(top_srcdir)/src/config @LIBAV_CFLAGS@ @ZLIB_CPPFLAGS@ -include config.h
++AM_CPPFLAGS = -I. -I$(top_srcdir)/include -I$(top_srcdir)/src/config @LIBAV_CFLAGS@ @ZLIB_CPPFLAGS@ -include config.h
+ 
+ lib_LTLIBRARIES = src/core/libffms2.la
+ src_core_libffms2_la_LIBADD = @LIBAV_LIBS@ @ZLIB_LDFLAGS@ -lz @LTUNDEF@

Copied: ffmpegsource/repos/community-staging-x86_64/PKGBUILD (from rev 93964, ffmpegsource/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2013-07-12 08:01:02 UTC (rev 93965)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer: Maxime Gauduin <alucryd at gmail.com>
+
+pkgname=ffmpegsource
+pkgver=755
+pkgrel=1
+pkgdesc="A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access"
+arch=('i686' 'x86_64')
+url="http://code.google.com/p/ffmpegsource/"
+license=('MIT')
+depends=('ffmpeg')
+makedepends=('svn')
+options=('!libtool')
+source=("${pkgname}::svn+http://ffmpegsource.googlecode.com/svn/trunk/"
+        'autoconf.patch')
+sha256sums=('SKIP'
+            '2cfa7d2e0219a5c8df9a50fe2460a1a1e6b69df10e6d9eee1d723766e62535e7')
+
+pkgver() {
+  cd "${SRCDEST}"/${pkgname}
+
+  svnversion | tr -d [A-z]
+}
+
+prepare() {
+  cd "${srcdir}"/${pkgname}
+
+  patch -Np1 -i ../autoconf.patch
+}
+
+build() {
+  cd "${srcdir}"/${pkgname}
+
+  ./autogen.sh --prefix=/usr --enable-shared --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}"/${pkgname}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/ffmpegsource
+  install -m 644 COPYING "${pkgdir}"/usr/share/licenses/ffmpegsource/LICENSE
+}
+
+# vim: ts=2 sw=2 et:

Copied: ffmpegsource/repos/community-staging-x86_64/autoconf.patch (from rev 93964, ffmpegsource/trunk/autoconf.patch)
===================================================================
--- community-staging-x86_64/autoconf.patch	                        (rev 0)
+++ community-staging-x86_64/autoconf.patch	2013-07-12 08:01:02 UTC (rev 93965)
@@ -0,0 +1,11 @@
+--- a/Makefile.am
++++ b/Makefile.am
+@@ -6,7 +6,7 @@ pkgconfig_DATA = ffms2.pc
+ 
+ dist_doc_DATA = doc/ffms2-api.html doc/ffms2-changelog.html doc/style.css
+ 
+-INCLUDES = -I. -I$(top_srcdir)/include -I$(top_srcdir)/src/config @LIBAV_CFLAGS@ @ZLIB_CPPFLAGS@ -include config.h
++AM_CPPFLAGS = -I. -I$(top_srcdir)/include -I$(top_srcdir)/src/config @LIBAV_CFLAGS@ @ZLIB_CPPFLAGS@ -include config.h
+ 
+ lib_LTLIBRARIES = src/core/libffms2.la
+ src_core_libffms2_la_LIBADD = @LIBAV_LIBS@ @ZLIB_LDFLAGS@ -lz @LTUNDEF@




More information about the arch-commits mailing list