CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
prt-get: updated to 5.19.4
[ports/raspberrypi3-arm.git] / rpi3-userland / Pkgfile
CommitLineData
9de47c7f
VM
1# Description: Source code for ARM side libraries for interfacing to Raspberry Pi GPU.
2# URL: https://github.com/raspberrypi/userland
3# Maintainer:
4# Depends on: cmake
5
6name=rpi3-userland
1bb817f6 7version=20191217
9de47c7f 8release=1
1bb817f6 9commit=42ec119e03eb8dffc7c83e2ac0e665e333abbef6
9de47c7f
VM
10source=(https://github.com/raspberrypi/userland/archive/$commit/$name-$version.tar.gz)
11
12build() {
13 mkdir build
14 cd build
15 cmake -DCMAKE_BUILD_TYPE=Release \
1bb817f6 16 -DARM64=ON \
9de47c7f
VM
17 ../userland-$commit
18 make
19 make DESTDIR=$PKG install
20 find $PKG \(\
21 -iname "*readme*" \
22 -o -iname "*license*" \
23 \) -exec rm -fr '{}' \+
24}