PKGBUILDs/alarm/raspberrypi-utils/PKGBUILD

36 lines
1.1 KiB
Bash
Raw Normal View History

# Maintainer: graysky <therealgraysky AT protonmail DOT com>
pkgname=raspberrypi-utils
2024-04-24 18:06:34 +00:00
pkgver=20240424
2024-02-04 13:19:59 +00:00
pkgrel=1
2024-04-24 18:06:34 +00:00
_commit=451b9881b72cb994c102724b5a7d9b93f97dc315
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
)
2024-04-24 18:06:34 +00:00
md5sums=('39e8a9c0d07da8ddfecdd6c50018fd99'
2024-02-04 13:19:59 +00:00
'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"
}