summaryrefslogtreecommitdiff
path: root/community/ffmpegsource
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-09-16 01:45:50 -0700
committerroot <root@rshg054.dnsready.net>2013-09-16 01:45:50 -0700
commitbce247d29e4c6f3b30326d485942cc2d3614430f (patch)
tree01e32a818b790f0fa25a4d0f6e2b5a37e73af3de /community/ffmpegsource
parentc779760082085ee8f0e33d528811450e260867e0 (diff)
Mon Sep 16 01:44:21 PDT 2013
Diffstat (limited to 'community/ffmpegsource')
-rwxr-xr-xcommunity/ffmpegsource/PKGBUILD47
-rwxr-xr-xcommunity/ffmpegsource/autoconf.patch11
2 files changed, 0 insertions, 58 deletions
diff --git a/community/ffmpegsource/PKGBUILD b/community/ffmpegsource/PKGBUILD
deleted file mode 100755
index 0bb3984f9..000000000
--- a/community/ffmpegsource/PKGBUILD
+++ /dev/null
@@ -1,47 +0,0 @@
-# $Id: PKGBUILD 94878 2013-08-01 06:54:52Z bpiotrowski $
-# Maintainer: Maxime Gauduin <alucryd@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:
diff --git a/community/ffmpegsource/autoconf.patch b/community/ffmpegsource/autoconf.patch
deleted file mode 100755
index 2ed0d0f6e..000000000
--- a/community/ffmpegsource/autoconf.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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@