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
27 lines
903 B
Text
27 lines
903 B
Text
# Maintainer: Danct12 <danct12@disroot.org>
|
|
pkgname=libconsolekeyboard
|
|
pkgver=1.0.0_git20191011
|
|
pkgrel=0
|
|
pkgdesc="A terminal multiplexer library"
|
|
arch="all"
|
|
url="https://github.com/Daniel-Abrecht/console-keyboard-multiplexer/tree/libconsolekeyboard"
|
|
license="LGPL-3.0-or-later"
|
|
subpackages="$pkgname-dev"
|
|
options="!check" # fails without a proper devfs
|
|
|
|
# Source
|
|
_commit="73611fa86c8a4c375102a4251cb795b30758e32b"
|
|
source="
|
|
console-keyboard-multiplexer-$_commit.tar.gz::https://github.com/Daniel-Abrecht/console-keyboard-multiplexer/archive/$_commit.tar.gz
|
|
"
|
|
builddir="$srcdir/console-keyboard-multiplexer-$_commit"
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make install DESTDIR="$pkgdir"
|
|
}
|
|
|
|
sha512sums="3f2bd8aa62489068b02e4ac985a69a84ad12a59beabecca0a5a8cc0faba4250ff34e81be9d3dde8861bf9907f7137bea976e036eec286e0fe0bfdb2505e1f0ba console-keyboard-multiplexer-73611fa86c8a4c375102a4251cb795b30758e32b.tar.gz"
|