blob: 738b885c11e91be73e8934c484b51d7d5e9301d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libdc1394
pkgver=2.1.3
pkgrel=1
pkgdesc="High level programming interface to control IEEE 1394 based cameras"
url="http://damien.douxchamps.net/ieee1394/libdc1394/"
arch="all"
license="LGPL"
depends=
depends_dev="libusb-dev libraw1394-dev"
makedepends="$depends_dev autoconf automake libtool"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/project/libdc1394/libdc1394-2/libdc1394-$pkgver.tar.gz
conditional-dc1394_vloopback.patch"
_builddir="$srcdir"/libdc1394-$pkgver
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
libtoolize --force && aclocal && autoconf && automake
}
build() {
cd "$_builddir"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
}
# there is on ly one tool and its only 4k...
#tools() {
# pkgdesc="Tools to use with $pkgname"
# replaces="$pkgname"
# mkdir -p "$subpkgdir"/usr/
# mv "$pkgdir"/usr/bin "$subpkgdir"/usr
#}
md5sums="d8b2cbfae1b329fdeaa638da80427334 libdc1394-2.1.3.tar.gz
33a30ef4e4a881707011ff4554c57c38 conditional-dc1394_vloopback.patch"
|