CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
rpi3-userland: removed junk file
[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
7version=20190925
8release=1
9commit=13b33c8ee52521ac3c804ffa6d8e8b8a8cd30697
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 \
16 -DARM64=aarch64 \
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}