Package Details: lives 3.2.0-2

Git Clone URL: https://aur.archlinux.org/lives.git (read-only, click to copy)
Package Base: lives
Description: A Video Editing System
Upstream URL: http://lives-video.com
Licenses: GPL
Submitter: encelo
Maintainer: encelo
Last Packager: encelo
Votes: 201
Popularity: 0.000003
First Submitted: 2005-07-31 22:25 (UTC)
Last Updated: 2020-11-12 10:58 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 .. 16 Next › Last »

vendelin commented on 2020-06-23 10:00 (UTC)

I've got hundreds of errors like these while installing. I tried with yay and pacaur. I googled it, tried to build manually, but no luck. Please help.

/usr/bin/ld: effects.o:(.bss+0xc8): multiple definition of `dummychar'; widget-helper.o:(.bss+0x8): first defined here
/usr/bin/ld: effects.o:(.bss+0xd0): multiple definition of `tv'; widget-helper.o:(.bss+0x10): first defined here
/usr/bin/ld: effects.o:(.bss+0xe0): multiple definition of `prefsw'; widget-helper.o:(.bss+0x20): first defined here

Tio commented on 2019-10-14 23:28 (UTC)

Error: lives: error while loading shared libraries: libweed_slice.so.0: cannot open shared object file: No such file or directory

encelo commented on 2019-09-08 10:28 (UTC)

Updated to 3.0.2

encelo commented on 2019-08-18 11:06 (UTC)

Updated to 3.0.1

encelo commented on 2019-08-08 09:33 (UTC)

Updated to 3.0.0

encelo commented on 2019-01-09 16:26 (UTC)

Updated to 2.10.2

encelo commented on 2019-01-02 22:14 (UTC)

Updated to 2.10.1

encelo commented on 2018-07-14 10:21 (UTC)

Added libtirpc to the dependencies array

Enelar commented on 2018-06-20 05:21 (UTC)

nirp, correct, that helps. software itself seems useless tho.

nirp commented on 2018-05-29 07:35 (UTC) (edited on 2018-05-29 08:49 (UTC) by nirp)

Following the fix proposed for package "trickle" seems to solve the "rpc.h" issue -

https://aur.archlinux.org/cgit/aur.git/commit/?h=trickle&id=d9f9123e7333

Patched PKGBUILD to try:

diff --git a/PKGBUILD b/PKGBUILD
index [`50254a9`](https://aur.archlinux.org/cgit/aur.git/commit/?h=lives&id=50254a9)..fa0ebbb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,7 +6,7 @@ pkgdesc="A Video Editing System"
 arch=('i686' 'x86_64')
 url="<http://lives-video.com>"
 license=('GPL')
-depends=('mplayer' 'imagemagick' 'gtk3' 'sox' 'libvisual' 'mjpegtools' 'python' 'ffmpeg' 'jack' 'fftw' 'glu' 'schroedinger')
+depends=('mplayer' 'imagemagick' 'gtk3' 'sox' 'libvisual' 'mjpegtools' 'python' 'ffmpeg' 'jack' 'fftw' 'glu' 'schroedinger' 'libtirpc')
 optdepends=('sdl' 'libogg' 'mkvtoolnix-cli' 'libmatroska' 'ogmtools' 'libavc1394' 'dvgrab' 'cdrkit' 'lame' 'youtube-dl' 'opencv')
 makedepends=('pkg-config')
 options=(!emptydirs)
@@ -16,6 +16,8 @@ md5sums=('abba27bc112513a57a0fd0ed71bec366')

 build() {
   cd ${pkgname}-${pkgver}
+  CPPFLAGS+=" -I/usr/include/tirpc/"
+  LDFLAGS+=" -ltirpc"
   ./configure --prefix=/usr --enable-turbo --disable-doxygen
   make
 }