mi servirebbe una mano per cercare di capire perchè kdenlive non va, ho installato sia il pachetto che c'è sul sito ufficiale ma andava allora ho scritto una SlackBuild e mi sono compilato il pachetto ma continua a non funzionare, va in crash dopo la configurazione iniziale.
probabilmente manca qualche lib però anche eseguendo da console e guardando l'output non ricevo nessuna informazione utile (o almeno non la vedo)
qualcuno può darmi una mano per far andare sto prog?..grazie
vi posto lo slackbuild
Codice: Seleziona tutto
#!/bin/sh
#
# http://www.kdenlive.org
#
# Packager ScorpionIT
CWD=`pwd`
TMP=${TMP:-/tmp/txz}
PKG=$TMP/pkg-kdenlive
NAME=kdenlive
VERSION=0.7.5
ARCH=${ARCH:-i486}
BUILD=SCM
if [ ! -d $TMP ]; then
mkdir -p $TMP
fi
if [ ! -d $PKG ]; then
mkdir -p $PKG
fi
mkdir -p $PKG/usr/
tar xvzf $CWD/$NAME-$VERSION.tar.gz
chown -R Scorpion:root $NAME-$VERSION
cd $NAME-$VERSION
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr || exit 1
make || exit 1
make install DESTDIR=$PKG || exit 1
chown -R root.bin /pkg/usr/bin
mkdir -p $PKG/usr/doc/$NAME-$VERSION
cp -a AUTHORS COPYING README $PKG/usr/doc/$NAME-$VERSION
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/slack-desc > $PKG/usr/doc/$NAME-$VERSION/slack-desc
cat $CWD/$NAME.SlackBuild > $PKG/usr/doc/$NAME-$VERSION/$NAME.SlackBuild
cd $PKG
makepkg -l y -c n $CWD/$NAME-$VERSION-$ARCH-$BUILD.txz
if [ "$1" = "--cleanup" ]; then
rm -rf $TMP/$NAME-$VERSION
rm -rf $PKG
fi
Codice: Seleziona tutto
# HOW TO EDIT THIS FILE:
# The "handy ruler" below makes it easier to edit a package description. Line
# up the first '|' above the ':' following the base package name, and the '|'
# on the right side marks the last column you can put a character in. You must
# make exactly 11 lines for the formatting to be correct. It's also
# customary to leave one space after the ':'.
|-----handy-ruler------------------------------------------------------|
kdenlive:
kdenlive: Kdenlive is an intuitive and powerful multi-track video editor,
kdenlive: including most recent video technologies.
kdenlive:
kdenlive:
kdenlive:
kdenlive: Packager ScorpionIT
kdenlive:
kdenlive:
kdenlive:
kdenlive:
--------------------------------------------------------------------------------

