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
25 lines
686 B
Text
25 lines
686 B
Text
pkgname=hybris-base
|
|
pkgver=1.0
|
|
pkgrel=0
|
|
pkgdesc="Meta package to use libhybris adaptation"
|
|
url="https://postmarketos.org"
|
|
license="GPL-3.0-or-later"
|
|
options="!check"
|
|
# libhybris cannot be built for arch x86_64
|
|
arch="armhf armv7 aarch64"
|
|
depends="lxc-android libhybris libhybris-7.1 libhybris-egl libhybris-gles libhybris-libwayland-egl wayland-libs-client wayland-libs-server"
|
|
subpackages="$pkgname-x11-generic:x11_generic $pkgname-x11-caf:x11_caf"
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
x11_generic() {
|
|
depends="xf86-video-hwcomposer xf86-video-hwcomposer-7.1"
|
|
mkdir -p "$subpkgdir"
|
|
}
|
|
|
|
x11_caf() {
|
|
depends="xf86-video-hwcomposer xf86-video-hwcomposer-7.1-caf"
|
|
mkdir -p "$subpkgdir"
|
|
}
|