desktop/dvdauthor/PKGBUILD
2016-06-07 08:50:25 +01:00

31 lines
661 B
Bash

pkgname=dvdauthor
pkgver=0.7.1
pkgrel=5
pkgdesc="DVD authoring tools"
arch=('x86_64')
url="http://dvdauthor.sourceforge.net/"
license=('GPL')
depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi')
categories=('multimedia')
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
"gcc-fix.diff")
sha1sums=('a9636d165bf546e3e2b25b7397c33dbfa2895e6a'
'0fb14035a96583634b98be1f31d439851679ff54')
prepare() {
cd $pkgname
patch -p1 -i $srcdir/gcc-fix.diff
}
build() {
cd $pkgname
./configure --prefix=/usr \
--sysconfdir=/etc
make
}
package() {
cd $pkgname
make DESTDIR=$pkgdir install
}