blob: 885a959fd2bdbfdef62c7154ea053de1b7198726 (
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
60
61
62
63
64
65
66
67
68
69
70
71
|
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: Balló György <ballogyor+arch at gmail dot com>
# Contributor: damir <damir@archlinux.org>
# Contributor: Robert Emil Berge <robert@rebi.no>
_android_arch=x86
pkgname=android-${_android_arch}-libavc1394
pkgver=0.5.4
pkgrel=1
arch=('any')
pkgdesc="Library to control A/V devices using the 1394 TA AV/C commands (Android ${_android_arch})"
url='https://sourceforge.net/projects/libavc1394/'
license=('GPL-2.0-or-later AND LGPL-2.1-or-later')
depends=("android-${_android_arch}-libraw1394")
makedepends=('android-configure')
options=(!strip !buildflags staticlibs !emptydirs)
source=("https://downloads.sourceforge.net/libavc1394/libavc1394-$pkgver.tar.gz"
'0001-Unversioned-libs.patch')
md5sums=('caf0db059d8b8d35d6f08e6c0e1c7dfe'
'a58b96562f366a9614de69403decfc65')
prepare() {
cd "${srcdir}/libavc1394-$pkgver"
patch -Np1 -i ../0001-Unversioned-libs.patch
# Disable test build
sed -i 's|common libavc1394 librom1394 test|common libavc1394 librom1394|g' Makefile.am
sed -i 's|common libavc1394 librom1394 test|common libavc1394 librom1394|g' Makefile.in
sed -i '/CONFIG_FILES test\/Makefile/d' configure
sed -i 's| test/Makefile | |g' configure
}
build() {
cd "${srcdir}/libavc1394-$pkgver"
source android-env ${_android_arch}
# Platform specific patches
case "$_android_arch" in
aarch64)
host=armv8-unknown-linux
;;
armv7a-eabi)
host=armv7-unknown-linux
;;
x86)
host=x86-unknown-linux
;;
x86-64)
host=x86_64-unknown-linux
;;
*)
;;
esac
android-${_android_arch}-configure \
--host=${host}
make $MAKEFLAGS
}
package() {
cd "${srcdir}/libavc1394-$pkgver"
source android-env ${_android_arch}
make DESTDIR="$pkgdir" install
rm -f "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.so.*
${ANDROID_STRIP} -g --strip-unneeded "${pkgdir}"/${ANDROID_PREFIX_LIB}/*.so
${ANDROID_STRIP} -g "$pkgdir"/${ANDROID_PREFIX_LIB}/*.a
}
|