summaryrefslogtreecommitdiff
path: root/fuse3
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2020-11-09 15:13:31 +0100
committerJuergen Daubert <jue@jue.li>2020-11-09 15:13:31 +0100
commitfa521e9cc37e886be6f65ada5b3554976e4207d2 (patch)
tree307d824ddcca854ebc87dce47cc223864b90aeb7 /fuse3
parente97435a996aaefb60c392c566ab68e050d352783 (diff)
downloadopt-fa521e9cc37e886be6f65ada5b3554976e4207d2.tar.gz
opt-fa521e9cc37e886be6f65ada5b3554976e4207d2.tar.xz
fuse3: improve meson syntax
Diffstat (limited to 'fuse3')
-rw-r--r--fuse3/.signature4
-rw-r--r--fuse3/Pkgfile10
2 files changed, 8 insertions, 6 deletions
diff --git a/fuse3/.signature b/fuse3/.signature
index fceaea888..fff0b19d8 100644
--- a/fuse3/.signature
+++ b/fuse3/.signature
@@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
-RWSE3ohX2g5d/dHkhTZsCklcQPa4Tw7vZwS70mJ7CnX4hCU8kpI+etiqH7Yuqd7UTR/aqvB8vbUfDxh71hrI1cO9mYsQTkNCJwk=
-SHA256 (Pkgfile) = d6e5e62f7d333af0c837b8053f0e56005862589e389f23d22e240b557e479872
+RWSE3ohX2g5d/basfKhEyteiK+yG/lzL1CvLwZNnJr2/ZavJMQrQTajy8uaLqmmt0M2zc2KG+xf3AOM5VQZx0dD1w56LeC4FMgw=
+SHA256 (Pkgfile) = ad36a77a510bd189d7c17713f72ea7254169d971477509872a612bdf75b0fb72
SHA256 (.footprint) = d983f9b189f4b084a498b8903bf12df8ae581b0846c71b2f31ce6a7f5d532708
SHA256 (fuse-3.10.0.tar.xz) = 26517954567f237a7dbcb532755ba0d2c77575c5d90db7566b6e40ec05b0a039
diff --git a/fuse3/Pkgfile b/fuse3/Pkgfile
index 90b678d20..cbc9c89f9 100644
--- a/fuse3/Pkgfile
+++ b/fuse3/Pkgfile
@@ -9,11 +9,13 @@ release=1
source=(https://github.com/libfuse/libfuse/releases/download/fuse-$version/fuse-$version.tar.xz)
build() {
- meson build fuse-$version \
- --prefix /usr \
- --sysconfdir /etc
+ meson setup build fuse-$version \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --buildtype=release
- DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
+ meson compile -C build -j ${JOBS:-1}
+ DESTDIR=$PKG meson install -C build
rm -r $PKG/{dev,etc,lib}
}

Generated by cgit