blob: 20fdcec01f1b097c6d9e61de03b9a48151314957 (
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
|
# Maintainer: Gonzalo Exequiel Pedone <hipersayan DOT x AT gmail DOT com>
_android_arch=riscv64
pkgname=android-${_android_arch}-libtheora
pkgver=1.1.1
pkgrel=4
pkgdesc="An open video codec developed by the Xiph.org (Android ${_android_arch})"
arch=('any')
url="http://xiph.org"
license=("BSD")
groups=('android-libtheora')
depends=("android-${_android_arch}-libvorbis")
makedepends=('android-configure')
options=(!strip !buildflags staticlibs)
source=("http://downloads.xiph.org/releases/theora/libtheora-${pkgver}.tar.bz2")
md5sums=('292ab65cedd5021d6b7ddd117e07cd8e')
prepare() {
cd "${srcdir}/libtheora-${pkgver}"
source android-env ${_android_arch}
autoreconf -fi -I m4
}
build() {
cd "${srcdir}/libtheora-${pkgver}"
source android-env ${_android_arch}
android-${_android_arch}-configure \
--disable-examples
make $MAKEFLAGS
}
package() {
cd "${srcdir}/libtheora-${pkgver}"
source android-env ${_android_arch}
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}/${ANDROID_PREFIX_SHARE}"
${ANDROID_STRIP} --strip-unneeded "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.so
${ANDROID_STRIP} -g "${pkgdir}/${ANDROID_PREFIX_LIB}"/*.a
}
|