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
22 lines
714 B
Text
22 lines
714 B
Text
# Maintainer: Oliver Smith <ollieparanoid@postmarketos.org>
|
|
pkgname=postmarketos-demos
|
|
pkgver=1.0.0
|
|
pkgrel=0
|
|
pkgdesc="Simple touch menu for a few demo programs"
|
|
url="https://postmarketos.org"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
depends="weston-xwayland dbus"
|
|
makedepends="gtk+3.0-dev"
|
|
source="https://gitlab.com/postmarketos/postmarketos-demos/-/archive/$pkgver/postmarketos-demos-$pkgver.tar.gz"
|
|
options="!check" # No tests
|
|
|
|
build() {
|
|
make
|
|
}
|
|
|
|
package() {
|
|
install -D -m755 postmarketos-demos \
|
|
"$pkgdir"/usr/bin/postmarketos-demos
|
|
}
|
|
sha512sums="5e8354b1a9cd8640e1d36f0d0f10e3836553a4fc9e610c8f5c6105830615d6cf4536213b17e24e648461e1a83f57c9d1ac666f5674f16638a3d0c4be43a91aa9 postmarketos-demos-1.0.0.tar.gz"
|