blob: eba1ab0625ccc0bcc3bab082e97464b043f67009 (
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
|
# Contributor: Karel Kočí <cynerd@email.cz>
# Maintainer: Karel Kočí <cynerd@email.cz>
pkgname=libomxil-bellagio
pkgver=0.9.1
pkgrel=3
pkgdesc="Bellagio OpenMAX IL"
url="https://github.com/felipec/libomxil-bellagio"
arch="armhf aarch64"
license="LGPL-2.1-or-later"
options="!check"
makedepends="automake autoconf libtool"
source="$pkgname-$pkgver.tar.gz::https://github.com/felipec/libomxil-bellagio/archive/$pkgver.tar.gz"
build() {
autoreconf -i -s
./configure \
--prefix=/usr \
--enable-shared \
--disable-static
make
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="70fee42ea7a44eed728c0fede4b5e4350c88fa24e33e1a023e7a34d1fd86ca577d2d95b5ac234298cf08a7835ade6eb8a34deeb89e31ae48e6bde1ffbb613588 libomxil-bellagio-0.9.1.tar.gz"
|