wayland: updated meson syntax

This commit is contained in:
Tim Biermann 2020-11-03 20:57:32 +00:00
parent 52ae2574e4
commit 63ebb4251c
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zv8aZgzZDa0wS4gD2N1xQhnOaz7IO12Cx0r2aQVoTt5P45RY6tWGK/MQA/SrDDg6IRAo4sh0cADTQXzsMg73A4=
SHA256 (Pkgfile) = 9f602227f8f079af8a0f6ec97b4be64dcb7f5c4aab95c6fe8f9d9a86c6adcd4d
RWSagIOpLGJF3ye77bQqFQl0leAb5PBE9aUhz1vuYVDYBp6BULqa9v3D/jSHn33mAfSXCdJxUBrdcK747AMvB6abfpzXouVOXAg=
SHA256 (Pkgfile) = 490fb3488ef7d0c4f38da5d2eb0c4702b39cd07682b13ab80e5c4a2a53a47be5
SHA256 (.footprint) = 587a2cb9d658fa9bf03bb19781e5168afe4879cecbf0872ede7cc805268944a7
SHA256 (wayland-1.18.0.tar.xz) = 4675a79f091020817a98fd0484e7208c8762242266967f55a67776936c2e294d

View File

@ -9,9 +9,10 @@ release=1
source=(https://wayland.freedesktop.org/releases/$name-$version.tar.xz)
build() {
meson $name-$version build --prefix=/usr \
--buildtype=release \
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
-Ddocumentation=false
ninja -C build
DESTDIR=$PKG ninja -C build install
meson compile -C build
DESTDIR=$PKG meson install -C build
}