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
30 lines
761 B
Text
30 lines
761 B
Text
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname=device-samsung-apexq
|
|
pkgdesc="Samsung Galaxy S Relay 4G"
|
|
pkgver=0.1
|
|
pkgrel=5
|
|
url="https://postmarketos.org"
|
|
license="MIT"
|
|
arch="armhf"
|
|
options="!check !archcheck"
|
|
depends="postmarketos-base linux-samsung-apexq mkbootimg mesa-dri-swrast"
|
|
makedepends="devicepkg-dev"
|
|
source="deviceinfo"
|
|
subpackages="$pkgname-nonfree-firmware:nonfree_firmware"
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
}
|
|
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
}
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Wifi firmware"
|
|
depends="firmware-samsung-apexq"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
|
|
sha512sums="6f70e94748004d09aa568ea9cfff6058849be2b0bb2f5e33bd9a632249d09ea7b50cede51449f01113199705c9ea7b34936909e1afaff3ee3bd44d1fdf34682c deviceinfo"
|