core/dvgrab/PKGBUILD

29 lines
575 B
Bash
Raw Normal View History

2010-07-20 06:26:25 +08:00
pkgname=dvgrab
pkgver=3.5
_commit=e46042e0c7b3523b6854ee547b0534e8310b7460
2018-01-22 07:42:57 +08:00
pkgrel=3
2010-07-20 06:26:25 +08:00
pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source"
2016-02-24 04:23:52 +08:00
arch=('x86_64')
2010-07-20 06:26:25 +08:00
url="http://www.kinodv.org"
license=('GPL')
2016-02-24 04:23:52 +08:00
depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs')
2010-07-20 06:26:25 +08:00
makedepends=('pkgconfig')
source=("git+https://github.com/ddennedy/dvgrab.git#commit=$_commit")
md5sums=('SKIP')
2010-07-20 06:26:25 +08:00
prepare() {
cd $pkgname
2018-01-22 07:42:57 +08:00
autoreconf -vi
}
build() {
cd $pkgname
2010-07-20 06:26:25 +08:00
./configure --prefix=/usr
2012-08-01 02:08:34 +08:00
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir" install
2012-08-01 02:08:34 +08:00
}