blob: 331a378b97ce9bae5636deb4fc7e0c0ec0c8207c (
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
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libavc1394
pkgver=0.5.4
pkgrel=1
pkgdesc="Audio/Video Control library for IEEE-1394 devices"
url="http://sourceforge.net/projects/libavc1394/"
arch="all"
license="GPLv2+ LGPLv2+"
depends=
depends_dev="libraw1394-dev"
makedepends="$depends_dev libtool automake autoconf"
[ "$ALPINE_LIBC" != "eglibc" ] && makedepends="$makedepends argp-standalone"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://downloads.sourceforge.net/libavc1394/libavc1394-$pkgver.tar.gz
automake.patch
argp.patch"
_builddir="$srcdir"/libavc1394-$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
libtoolize && aclocal && autoconf && automake --add-missing
}
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
}
md5sums="caf0db059d8b8d35d6f08e6c0e1c7dfe libavc1394-0.5.4.tar.gz
058e5b2ebffa4933f31dc70101d348d4 automake.patch
c939fbdf47f9e5cd5511cd23acb6e835 argp.patch"
|