diff options
author | Juergen Daubert <jue@jue.li> | 2020-11-21 18:05:49 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2020-11-21 18:05:49 +0100 |
commit | 80919be52ebdb35aa7a6765ad4a9341bce7ea482 (patch) | |
tree | d29ab922c17ffca651f801ef3fda044de569769e /spice-protocol | |
parent | a5a4df8f2237b6af6a929441186904d873954fe7 (diff) | |
download | opt-80919be52ebdb35aa7a6765ad4a9341bce7ea482.tar.gz opt-80919be52ebdb35aa7a6765ad4a9341bce7ea482.tar.xz |
spice-protocol: update meson syntax
Diffstat (limited to 'spice-protocol')
-rw-r--r-- | spice-protocol/.signature | 4 | ||||
-rw-r--r-- | spice-protocol/Pkgfile | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/spice-protocol/.signature b/spice-protocol/.signature index 3018da9be..c6258c23d 100644 --- a/spice-protocol/.signature +++ b/spice-protocol/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/Y/zDojnKVyQqV/ZAhAzjPxs1hu8d1NjLq5bQ5A6Kf33YL8/i+S0yNDmgPpP5jKsEkScRfMeTOm16/h5PSnpwwM= -SHA256 (Pkgfile) = 8bb6316e6577d0bfcd13b166855729e1f5fd582eaebb4429333e120510bcccc4 +RWSE3ohX2g5d/cbW5rWPahvqyUYd7si1nHQ6xOxQ2mVjV34J+9oNsQySRf9j2cUmnSd0/kn+gPsyAiYafYklllIZ1nkGuY+hmAc= +SHA256 (Pkgfile) = 32ad63802324b752553eee06f38f870b1dace2a1f20f01663138abaf10acb28a SHA256 (.footprint) = 7647c963d1e6ad7b55e2927850d536b9a6aa51a5fed5a86b1da8116add090c57 SHA256 (spice-protocol-0.14.2.tar.xz) = 8f3a63c8b68300dffe36f2e75eac57afa1e76d5d80af760fd138a0b3f44cf1e9 diff --git a/spice-protocol/Pkgfile b/spice-protocol/Pkgfile index d9e20598e..f827e21b8 100644 --- a/spice-protocol/Pkgfile +++ b/spice-protocol/Pkgfile @@ -9,7 +9,8 @@ release=1 source=(https://spice-space.org/download/releases/$name-$version.tar.xz) build() { - meson build $name-$version --prefix /usr - ninja -C build -j ${JOBS:-1} - DESTDIR=$PKG meson install -C build + meson setup build $name-$version \ + --prefix=/usr \ + --buildtype=plain + DESTDIR=$PKG meson install -C build } |