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
76 lines
2.2 KiB
Text
76 lines
2.2 KiB
Text
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname=device-pine64-dontbeevil
|
|
pkgdesc="PINE64 PinePhone Don't be evil devkit"
|
|
pkgver=0.1
|
|
pkgrel=16
|
|
url="https://postmarketos.org"
|
|
license="MIT"
|
|
arch="aarch64"
|
|
options="!check !archcheck"
|
|
subpackages="
|
|
$pkgname-weston
|
|
$pkgname-x11
|
|
$pkgname-nonfree-firmware:nonfree_firmware
|
|
$pkgname-kernel-shortts:kernel_shortts
|
|
$pkgname-kernel-longts:kernel_longts
|
|
"
|
|
depends="postmarketos-base u-boot-pine64 uboot-tools mesa-git-dri-gallium ofono"
|
|
makedepends="devicepkg-dev"
|
|
install="$pkgname.post-install"
|
|
source="
|
|
deviceinfo
|
|
uboot-script.cmd
|
|
weston.ini
|
|
xorg.conf
|
|
"
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n postmarketos -d "$srcdir"/uboot-script.cmd "$srcdir"/boot.scr
|
|
}
|
|
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
install -D -m644 "$srcdir"/boot.scr \
|
|
"$pkgdir"/boot/boot.scr
|
|
}
|
|
|
|
x11() {
|
|
install_if="$pkgname xorg-server"
|
|
depends="
|
|
libinput
|
|
xf86-input-libinput
|
|
xf86-video-fbdev"
|
|
install -Dm644 "$srcdir"/xorg.conf \
|
|
"$subpkgdir"/etc/X11/xorg.conf.d/10-framebuffer.conf
|
|
}
|
|
|
|
weston() {
|
|
install_if="$pkgname weston"
|
|
install -Dm644 "$srcdir"/weston.ini \
|
|
"$subpkgdir"/etc/xdg/weston/weston.ini
|
|
}
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Wifi and Bluetooth firmware"
|
|
depends="linux-firmware-rtlwifi linux-firmware-rtl_bt firmware-rtl8723bt"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
kernel_shortts() {
|
|
pkgdesc="Short touch cable version"
|
|
depends="linux-postmarketos-allwinner"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
kernel_longts() {
|
|
pkgdesc="Long touch cable version"
|
|
depends="linux-postmarketos-allwinner"
|
|
install="$subpkgname.post-install"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
sha512sums="036fe47080b6d3199b4044d703cbbf441e25107c3680095d8523e63cd6f5e05013dde7e07962164b44b608120942029084e8e8dcce13505c6561e8c4360e466d deviceinfo
|
|
eda61d8097896a618593e07bd03518236692b4c580182ce2e34c5e1040125e1004088475f1d484e7a4918d6f1d395a9ab121cfca202a887cdfaf9c0363dbb40b uboot-script.cmd
|
|
c4c57d1627dd451213e1ef20d89de9266cd4edcc2d33a69aa9a1f13e16d9f9742036b69dc149fd910d7213f7525c41eb79576d4457bc85cc96eba0d986382d27 weston.ini
|
|
f86ef35730b89bcc8160c08db7a7fcd0970adf60c0b77af68bac397de49c0d1783e6b8db1762380c9bf874aff2d030c6f44ecb75c803d69e79ede11376409369 xorg.conf"
|