diff options
Diffstat (limited to 'pcr/lives/PKGBUILD')
-rw-r--r-- | pcr/lives/PKGBUILD | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/pcr/lives/PKGBUILD b/pcr/lives/PKGBUILD index a23faff04..8dc338cc6 100644 --- a/pcr/lives/PKGBUILD +++ b/pcr/lives/PKGBUILD @@ -1,31 +1,35 @@ # Contributor (Arch): Angelo Theodorou <encelo@users.sourceforge.net> # Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> pkgname=lives -pkgver=2.4.6 +pkgver=2.6.8 pkgrel=1 pkgdesc="A Video Editing System" arch=('i686' 'x86_64') url="http://lives-video.com" license=('GPL') -depends=('mplayer' 'imagemagick' 'gtk3' 'sox' 'libvisual' 'liboil' 'libavc1394' 'mjpegtools' 'python' 'ffmpeg' 'jack' 'fftw') -optdepends=('xorg-utils' 'sdl' 'libogg' 'mkvtoolnix-cli' 'libmatroska' 'ogmtools' 'dvgrab' 'cdrkit' 'lame' 'youtube-dl') -options=(!libtool) -source=(http://lives-video.com/releases/LiVES-$pkgver.tar.bz2) -md5sums=('3249657af1310db812ff8bdb7e53cfe5') +depends=('mplayer' 'imagemagick' 'gtk3' 'sox' 'libvisual' 'liboil' 'mjpegtools' 'python' 'ffmpeg2.8' 'jack' 'fftw') +optdepends=('xorg-utils' 'sdl' 'libogg' 'mkvtoolnix-cli' 'libmatroska' 'ogmtools' 'libavc1394' 'dvgrab' 'cdrkit' 'lame' 'youtube-dl' 'opencv') +makedepends=('automake') +options=(!emptydirs) +changelog=lives.changelog +source=(http://lives-video.com/releases/LiVES-$pkgver.tar.bz2 disable-toonz.patch) +md5sums=('1b0fe11fc1c20fb176e740f181a948ad' '9820005ad3c3626dc4853fb09301f7bc') -build() { - cd "$srcdir"/$pkgname-$pkgver +prepare() { + cd ${pkgname}-${pkgver} + # with opencv installed, toonz.cpp failes to build + patch -p1 -i "${srcdir}/disable-toonz.patch" + automake +} - # /bin/touch -> /usr/bin/touch - find -type f -exec sed -i 's:/bin/touch:/usr&:g' {} \; - ./configure --prefix=/usr +build() { + cd ${pkgname}-${pkgver} + PKG_CONFIG_PATH=/usr/lib/ffmpeg2.8/pkgconfig\ + ./configure --prefix=/usr --enable-turbo make } package() { - cd "$srcdir"/$pkgname-$pkgver - - make DESTDIR="$pkgdir" install - rm "$pkgdir"/usr/bin/lives - ln -s /usr/bin/lives-exe "$pkgdir"/usr/bin/lives + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install } |