diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-09 20:52:21 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-07-09 20:52:21 -0300 |
commit | aabab2c530c33c1beb40ac3dacb95e19ab99eac3 (patch) | |
tree | 1417c10b601a05725676a727a25901a32e7fd94c /community/openmovieeditor | |
parent | 3357db80ffa8a795fb5cdad0fc726470887706b0 (diff) | |
parent | d1e588afc2779754c0abd1122ecf4f8e3c863d7a (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/cinepaint/PKGBUILD
extra/cmake/PKGBUILD
extra/fltk/PKGBUILD
extra/foomatic/PKGBUILD
extra/kdegraphics/PKGBUILD
extra/kdelibs/PKGBUILD
extra/kdepim-runtime/PKGBUILD
extra/kdepim/PKGBUILD
extra/libxi/PKGBUILD
extra/monica/PKGBUILD
extra/rasqal/PKGBUILD
extra/soprano/PKGBUILD
multilib/wine/PKGBUILD
testing/mesa/PKGBUILD
Diffstat (limited to 'community/openmovieeditor')
-rw-r--r-- | community/openmovieeditor/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/community/openmovieeditor/PKGBUILD b/community/openmovieeditor/PKGBUILD index 07f2284e1..2ed7aeb39 100644 --- a/community/openmovieeditor/PKGBUILD +++ b/community/openmovieeditor/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 9280 2010-01-24 22:58:30Z foutrelis $ +# $Id: PKGBUILD 51110 2011-07-05 10:08:30Z spupykin $ # Contributor: Robert Emil Berge <filoktetes@linuxophic.org> # Maintainer: Robert Emil Berge # Maintainer: Mateusz Herych <heniekk@gmail.com> pkgname=openmovieeditor pkgver=0.0.20090105 -pkgrel=6 +pkgrel=7 pkgdesc="A simple video editor" arch=('i686' 'x86_64' 'mips64el') url="http://openmovieeditor.sourceforge.net/HomePage" license=('GPL') -depends=('libquicktime' 'libsamplerate' 'fltk' 'jack-audio-connection-kit' 'portaudio' 'gmerlin-avdecoder') +depends=('libquicktime' 'libsamplerate' 'fltk' 'jack' 'portaudio' 'gmerlin-avdecoder') source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('ce4f76c0b3e90aabf9c2d5c8dd31e9b1') @@ -17,6 +17,11 @@ build() { cd $srcdir/$pkgname-$pkgver unset LDFLAGS + export CFLAGS="$CFLAGS -fpermissive" + export CXXFLAGS="$CXXFLAGS -fpermissive" + export CPPFLAGS="$CPPFLAGS -fpermissive" + sed -i 's|= sizes();|= (short*)sizes();|g' src/Fl_Split.cpp + # Fix missing includes sed -e 's|<sstream>|<sstream>\n#include <stdint.h>|' -i src/VideoViewGL.H sed -e 's|<string>|<string>\n#include <stdint.h>|' -i src/WaveForm.H @@ -25,6 +30,6 @@ build() { sed -e 's|<iostream>|<iostream>\n#include <stdio.h>|' -i src/fl_font_browser.h ./configure --prefix=/usr - make || return 1 + make make DESTDIR=$pkgdir install } |