mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
812 B
Bash
21 lines
812 B
Bash
# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
|
|
# Contributor: Shadowhand <woody.gilk@gmail.com>
|
|
|
|
pkgname=any2dvd
|
|
pkgver=0.34
|
|
pkgrel=3
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="A script to transform movie files into a DVD complete with menus"
|
|
url="http://any2dvd.sourceforge.net/"
|
|
license=('GPL')
|
|
depends=('mplayer' 'transcode' 'ecasound' 'mpgtx' 'dvdauthor' 'multimux' \
|
|
'ghostscript' 'gsfonts' 'sharutils' 'soundtouch' 'xbindkeys')
|
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('f3bbc5a3f90fbd3895aa5e79de39696e')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
install -d -m 755 $startdir/pkg/usr/{bin,share/man/man1}
|
|
install -m 755 any2dvd any2vob $startdir/pkg/usr/bin
|
|
install -D -m 644 any2dvd.1 any2vob.1 $startdir/pkg/usr/share/man/man1
|
|
}
|