blob: ad58d71767334c3a730b622d9d96fc08fb31cfa6 (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Jason Chu <jason@archlinux.org>
# Contributor: Jaroslaw Swierczynski <swiergot@juvepoland.com>
# Contributor: Stephen Caraher <moskvax@gmail.com>
_android_arch=x86
pkgname=android-${_android_arch}-libiec61883
pkgver=1.2.0
pkgrel=3
arch=('any')
pkgdesc="A higher level API for streaming DV, MPEG-2 and audio over Linux IEEE 1394 (Android ${_android_arch})"
url='https://www.kernel.org/pub/linux/libs/ieee1394/'
license=('LGPL')
depends=("android-${_android_arch}-libraw1394")
makedepends=('android-configure')
options=(!strip !buildflags staticlibs !emptydirs)
source=("https://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-${pkgver}.tar.xz")
md5sums=('ed91bc1727fac8e019402fc3724a283d')
build() {
cd "${srcdir}/libiec61883-${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}
export CFLAGS="${CFLAGS} -fPIC"
export LDFLAGS="${LDFLAGS} -Wl,--no-undefined"
for d in src; do
mkdir -p ${d}/.libs
# Create object files
find ${d} -type f -name '*.c' -print0 | while read -d $'\0' cfile; do
cfilebn=$(basename -s .c "${cfile}")
cmd="${CC} -I. ${CFLAGS} ${CPPFLAGS} -o ${d}/.libs/${cfilebn}.o -c ${cfile}"
echo "${cmd}"
${cmd}
done
libname=libiec61883
# Create static libraries
cmd="${AR} rcs ${d}/.libs/${libname}.a ${d}/.libs/*.o"
echo "${cmd}"
${cmd}
# Create shared libraries
cmd="${CC} ${LDFLAGS} -shared -o ${d}/.libs/${libname}.so ${d}/.libs/*.o -lraw1394"
echo "${cmd}"
${cmd}
done
}
package() {
cd "${srcdir}/libiec61883-${pkgver}"
source android-env ${_android_arch}
# Install headers
install -v -m 755 -d "${pkgdir}/${ANDROID_PREFIX_INCLUDE}/libiec61883/"
install -v -m 644 src/iec61883.h "${pkgdir}/${ANDROID_PREFIX_INCLUDE}/libiec61883/"
# Install pkgconfig file
install -v -m 755 -d "${pkgdir}/${ANDROID_PREFIX_LIB}/pkgconfig/"
install -v -m 644 *.pc "${pkgdir}/${ANDROID_PREFIX_LIB}/pkgconfig/"
# Install libraries
for d in src; do
install -v -m 644 ${d}/.libs/*.so "${pkgdir}/${ANDROID_PREFIX_LIB}/"
install -v -m 644 ${d}/.libs/*.a "${pkgdir}/${ANDROID_PREFIX_LIB}/"
done
${ANDROID_STRIP} -g --strip-unneeded "${pkgdir}"/${ANDROID_PREFIX_LIB}/*.so
${ANDROID_STRIP} -g "$pkgdir"/${ANDROID_PREFIX_LIB}/*.a
}
|