PKGBUILDs/community/dvd-slideshow/PKGBUILD

32 lines
1.1 KiB
Bash
Raw Normal View History

2009-10-10 02:15:33 +00:00
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Tim Yang <tdy@gmx.com>
# Contributor: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
# Contributor: Travis Nickles <ryoohki7@yahoo.com>
# Contributor: Haw-Bin Chai <hbchai@gmail.com>
pkgname=dvd-slideshow
pkgver=0.8.2
pkgrel=1
pkgdesc="Scripts for creating slideshow DVDs with menus, audio, and fancy effects."
arch=('i686' 'x86_64')
url="http://dvd-slideshow.sourceforge.net"
license=('GPL')
depends=('bc' 'cdrkit' 'dvdauthor' 'jhead' 'netpbm' 'sox' 'toolame' 'transcode' 'vorbis-tools')
install=$pkgname.install
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-1.tar.gz)
md5sums=('838a845aaabed8328a17354dac4cdeae')
build() {
cd "${srcdir}/${pkgname}-${pkgver}-1"
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"
}