blob: 7abac83d85472ac5853e9ea53f9031ec1dbca742 (
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
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libdc1394
pkgver=2.1.4
pkgrel=0
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"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/project/libdc1394/libdc1394-2/$pkgver/libdc1394-$pkgver.tar.gz"
_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
}
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
rm "$pkgdir"/usr/lib/*.la
}
# 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="a9c5306dfc17917872513355f87e8412 libdc1394-2.1.4.tar.gz"
|