#Maintainer: Frederic Boulet bipbiponlinux~AT~gmail.com pkgname=lives pkgver=1.4.6 zenver=72 pkgrel=1 arch=i686 source=("http://www.xs4all.nl/~salsaman/lives/current/LiVES-$pkgver.tar.bz2") sourcetemplate=http://zenwalk.pinguix.com/user-accounts/bip/EXTRA/xap/$pkgname docs=("readme" "install" "copying" "changelog" "authors" "news" "todo" "maintainers") url=http://lives.sourceforge.net/ options=('norequiredbuilder' 'keepdepfile' 'noautodotnew') doinst() { # update the mime desktop database if [ -x usr/bin/update-desktop-database ]; then usr/bin/update-desktop-database -q fi } slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "lives a Free, Open Source video editor and a VJ tool." "LiVES mixes realtime video performance and non-linear editing" "in one application. It will let you start editing and making video" "without having to worry about formats, frame sizes, or framerates." "It is a very flexible tool." "You can even record your performance in real time, and then edit it" "lives: or render it straight away as a new clip !" ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr --localstatedir=/var --sysconfdir=/etc --disable-jack --disable-static make || return 1 make install DESTDIR=$startdir/pkg # Fix doc files mkdir -p $startdir/pkg/usr/doc/lives-$pkgver/ cp -v $startdir/pkg/usr/share/doc/lives-$pkgver/* $startdir/pkg/usr/doc/lives-$pkgver/ rm -rf $startdir/pkg/usr/share/doc # Fix execution in desktop file sed -i -e "s|Exec=lives|Exec=lives-exe|g" $startdir/pkg/usr/share/applications/LiVES.desktop }