a85db1dc7b
At the moment we have Contributor: lines on some packages (but not all of them), but often they don't represent the actual contributors to the package very well. E.g. when we added them retroactively to the device packages we only added the initial contributor (which isn't necessarily the person who made most of the work for a device...) The Git history is the most representative source for figuring out who contributed to a package, so there is no reason to duplicate that into the APKBUILD. [skip ci]: way too many packages
23 lines
648 B
Text
23 lines
648 B
Text
# Maintainer: Daniele Debernardi <drebrez@gmail.com>
|
|
pkgname=fbdebug
|
|
pkgver=1.0.0
|
|
pkgrel=0
|
|
pkgdesc="Framebuffer debugging tool"
|
|
url="https://postmarketos.org"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
makedepends="linux-headers"
|
|
source="https://gitlab.com/postmarketos/fbdebug/-/archive/$pkgver/fbdebug-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
gcc fbdebug.c -o fbdebug.o -c
|
|
gcc fbdebug.o -o fbdebug
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 fbdebug \
|
|
"$pkgdir"/usr/sbin/fbdebug
|
|
}
|
|
|
|
sha512sums="4a9c472ff47a10c8aad8c86b3c5f09b0b93f1a3da0e4bf70d0b09d4a8139d7b17f8e9630fc007c7f88c646e85910bb906249c64da7652a59dd3b256b578a48b4 fbdebug-1.0.0.tar.gz"
|