mako: updated meson syntax

This commit is contained in:
Tim Biermann 2023-08-27 14:59:44 +02:00
parent e58deed068
commit 6422ce4618
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/IZK6QThHgb3HxwTfD0hnYGJ3gaRmYZxTy2auiexU+PiQ1XL/uKCLhnuW9frWL9ym6UrbDTvO5sVCoXx7zW6QY=
SHA256 (Pkgfile) = 13bc45e139d7977d175575fef3d9f7b3be2f84d02b0b28f5e0ee64e5b22e2d10
RWSagIOpLGJF38SHAc2yiHucxYQFXQ1OZkUmtMoII9o8koxxVT1aDBlIm1lYykxSrYbGk2Dzy+Seruo6W21KWce94a7XOnlA7Q8=
SHA256 (Pkgfile) = fe0971bf535e42bdb6783451187f70b2452e99809fc7373e34fe244cfee6ed3e
SHA256 (.footprint) = 69c7db551cdf7c4a84cb73cfbb2034ba0edcfd64c9eb9b1be97f06bb060b07c4
SHA256 (mako-1.8.0.tar.gz) = f149f3dd2a083504a50307554c0a729ac56888c8ebb0704a78b7261be26166de

View File

@ -9,12 +9,13 @@ release=1
source=(https://github.com/emersion/mako/archive/v$version/$name-$version.tar.gz)
build() {
meson $name-$version build \
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true
meson compile -C build
DESTDIR=$PKG meson install -C build
}