8c2a95dbe2
* Mir starts up and is able to display system settings * x86_64 only for now, because at least ubuntu-app-test did not build on aarch64 Based on PureTryOut's work. Getting it to this stage was a huge effort (as it shows in the package count: 111(!)). See the merge request for details. [skip ci]: this won't finish in CI; ollieparanoid made sure that everything builds for x86_64.
38 lines
1 KiB
Text
38 lines
1 KiB
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Luca Weiss <luca@z3ntu.xyz>
|
|
pkgname=umockdev
|
|
pkgver=0.12.1
|
|
pkgrel=0
|
|
pkgdesc="Record/mock hardware devices for bug reports and regression tests"
|
|
arch="x86_64"
|
|
url="https://github.com/martinpitt/umockdev/"
|
|
license="LGPL-2.1"
|
|
depends=""
|
|
depends_dev="eudev-dev libgudev-dev"
|
|
makedepends="$depends_dev autoconf automake libtool gtk-doc vala linux-headers bash"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/martinpitt/$pkgname/archive/$pkgver.tar.gz"
|
|
subpackages="$pkgname-dev $pkgname-doc"
|
|
options="!check" # See https://gitlab.com/postmarketOS/pmbootstrap/issues/1650
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
|
|
./autogen.sh \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--enable-gtk-doc
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
sha512sums="0680efd60cdb10f48ed1aff3650b9a8345cb1b5f352751335830cef4d366c7cfd1c7c5b35864c078f2aa899965ef73bffcc4ae00029df80ecec5eb09c9505267 umockdev-0.12.1.tar.gz"
|