desktop/dvd-slideshow/PKGBUILD
2015-12-31 15:36:09 +01:00

25 lines
860 B
Bash

pkgname=dvd-slideshow
pkgver=0.8.6
_pkgver=$pkgver-1
pkgrel=1
pkgdesc="Scripts for creating slideshow DVDs with menus, audio, and fancy effects."
arch=('any')
url="http://dvd-slideshow.sourceforge.net"
license=('GPL')
depends=('bc' 'cdrkit' 'dvdauthor' 'jhead' 'netpbm' 'sox' 'toolame' 'transcode' 'vorbis-tools')
categories=('multimedia')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$_pkgver.tar.gz)
sha256sums=('3424f53ac76a6bc2209f58d8f6995af589a804be9585ac4cde66592c7124acfc')
package() {
cd $srcdir/$pkgname-$_pkgver
for _file in `ls man | sed 's/\.1//'`; do
install -Dm755 $_file $pkgdir/usr/bin/$_file
install -Dm644 man/$_file.1 $pkgdir/usr/share/man/man1/$_file.1
install -Dm644 doc/$_file.html $pkgdir/usr/share/doc/$pkgname/$_file.html
done
install -Dm644 ${pkgname}rc $pkgdir/usr/share/$pkgname/${pkgname}rc
}