PKGBUILDs/alarm/raspberrypi-utils/PKGBUILD
2024-02-23 14:24:29 -05:00

36 lines
1.1 KiB
Bash

# Maintainer: graysky <therealgraysky AT protonmail DOT com>
pkgname=raspberrypi-utils
pkgver=20240223
pkgrel=1
_commit=4b277d3f4ab361597e59b543cd9851c4f190dc82
pkgdesc="Legacy scripts and simple applications for Raspberry Pi"
arch=('aarch64' 'armv7h')
url="https://github.com/raspberrypi/utils"
license=('custom')
makedepends=('cmake' )
depends=('dtc')
replaces=('raspberrypi-firmware')
conflicts=('raspberrypi-firmware')
options=(!strip)
source=("utils-$pkgver-$pkgrel-${_commit:0:10}.tar.gz::https://github.com/raspberrypi/utils/archive/$_commit.tar.gz"
10-raspberrypi-utils.rules
)
md5sums=('e81aa7142ee008c232b2edc7c06f1e4d'
'a0423d9850cc56a15967e103c351c335')
build() {
cd "utils-$_commit"
cmake -S . -B . -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd "utils-${_commit}"
make install DESTDIR="$pkgdir"
install -Dm0644 LICENCE -t "$pkgdir/usr/share/licenses/$pkgname"
# setup permissions on video group for /usr/bin/vcgencmd
install -Dm0644 ../10-raspberrypi-utils.rules "$pkgdir/usr/lib/udev/rules.d/10-raspberrypi-utils.rules"
}