diff options
author | Tim Biermann <tbier@posteo.de> | 2020-11-03 20:57:32 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-11-03 20:57:32 +0000 |
commit | 63ebb4251ca787f8db8f1835b260d72bdcb31c75 (patch) | |
tree | 4720b74eac06687e30322a6039b05d0d8168953e /wayland | |
parent | 52ae2574e44511df28de3d85c4c2435c4d166b11 (diff) | |
download | contrib-63ebb4251ca787f8db8f1835b260d72bdcb31c75.tar.gz contrib-63ebb4251ca787f8db8f1835b260d72bdcb31c75.tar.xz |
wayland: updated meson syntax
Diffstat (limited to 'wayland')
-rw-r--r-- | wayland/.signature | 4 | ||||
-rw-r--r-- | wayland/Pkgfile | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/wayland/.signature b/wayland/.signature index 9beee0214..1a1127a95 100644 --- a/wayland/.signature +++ b/wayland/.signature @@ -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 diff --git a/wayland/Pkgfile b/wayland/Pkgfile index 0079d3f97..64ec2c1ec 100644 --- a/wayland/Pkgfile +++ b/wayland/Pkgfile @@ -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 } |