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
29 lines
778 B
Text
29 lines
778 B
Text
# Reference: <https://postmarketos.org/devicepkg>
|
|
pkgname=device-samsung-i8200
|
|
pkgdesc="Samsung SIII mini Value Edition"
|
|
pkgver=0.1
|
|
pkgrel=4
|
|
url="https://postmarketos.org"
|
|
license="MIT"
|
|
arch="armhf"
|
|
options="!check !archcheck"
|
|
depends="postmarketos-base linux-samsung-i8200 mkbootimg mesa-dri-swrast"
|
|
makedepends="devicepkg-dev"
|
|
source="deviceinfo"
|
|
subpackages="$pkgname-nonfree-firmware:nonfree_firmware"
|
|
|
|
nonfree_firmware() {
|
|
pkgdesc="Wi-Fi and bluetooth firmware"
|
|
depends="linux-firmware-mrvl"
|
|
mkdir "$subpkgdir"
|
|
}
|
|
|
|
build() {
|
|
devicepkg_build $startdir $pkgname
|
|
}
|
|
|
|
package() {
|
|
devicepkg_package $startdir $pkgname
|
|
}
|
|
|
|
sha512sums="494a84bfeeb08280900233d5c1f7a49b8ec0b8c44b1ac31e86b029c982cb67006a3c2b5454a851b025fd28c2c00404a2ff00f9d6e31c18700e4a46e94c4836ca deviceinfo"
|