blob: b60eea745fe668df5cca5cabcc6c48d60a69006a (
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
|
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=raspberrypi
pkgver=0.20180511
_commitid=2448644657e5fbfd82299416d218396ee1115ece
pkgrel=0
pkgdesc="Raspberry Pi support tools"
url="https://github.com/raspberrypi/userland"
arch="armhf aarch64"
license="BSD"
depends=""
depends_dev="linux-headers raspberrypi-libs"
makedepends="cmake $depends_dev"
install=""
options="!fhs !check"
subpackages="$pkgname-dev $pkgname-libs $pkgname-openrc"
source="raspberrypi-$pkgver.tar.gz::https://github.com/raspberrypi/userland/archive/$_commitid.tar.gz
"
builddir="$srcdir"/userland-$_commitid
build() {
cd "$builddir"
case "$CARCH" in
arm*) local ARM64=off;;
aarch64) local ARM64=on;;
esac
cmake -DCMAKE_C_FLAGS="$CFLAGS -D_GNU_SOURCE" \
-DARM64=$ARM64 \
-DCMAKE_BUILD_TYPE=MinSizeRel \
-DCMAKE_INSTALL_RPATH=/opt/vc/lib \
$_sourcedir
make
}
package() {
cd "$builddir"
make install DESTDIR="$pkgdir" || return 1
# nuke the unwanted stuff
rm -rf "$pkgdir"/opt/vc/src
rm -rf "$pkgdir"/opt/vc/lib/*.a
}
libs() {
pkgdesc="Raspberry Pi support libraries"
mkdir -p "$subpkgdir"/opt/vc/lib
mv "$pkgdir"/opt/vc/lib/* "$subpkgdir"/opt/vc/lib
}
sha512sums="af764dc9490d94d4877833aa2816c8ceef2e12aca6ad95c9f4472dee4b06eb31d9f6707c0ce664e0d25ab7f5c296c48e827b1100c850946595e931e03c177ec6 raspberrypi-0.20180511.tar.gz"
|