blob: a05e44e34300e98e5b2738884a29e08f810eddd7 (
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
56
57
58
59
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libdc1394
pkgver=2.2.1
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="libusbx-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"
update_config_sub || return 1
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--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="5c4b78bb8265d6dc971433ec1da381ab libdc1394-2.2.1.tar.gz"
sha256sums="920c331abf8bf2e1f73dfee0df103daf9f1850a69552ee825a9824e01ce96cf2 libdc1394-2.2.1.tar.gz"
sha512sums="e79370d4ac50f60535ef8b6f6ae21d5ede965812c775853e98c5c38e9bfc87929ef6e0d3737a20a443cd60c0225af18944bcba6d2cfb2ba858ac868bfb53c446 libdc1394-2.2.1.tar.gz"
|