diff options
author | Juergen Daubert <jue@jue.li> | 2020-11-21 17:51:28 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2020-11-21 17:51:28 +0100 |
commit | cce9d65f4e14af3d3f58622f488af999122b7caa (patch) | |
tree | 987c851d7121bf21c011df11f606ebb10c1e3d2a /gexiv2 | |
parent | c61a8c64207e357a5800c3cd2564228cbf68d457 (diff) | |
download | opt-cce9d65f4e14af3d3f58622f488af999122b7caa.tar.gz opt-cce9d65f4e14af3d3f58622f488af999122b7caa.tar.xz |
gexiv2: update meson syntax
Diffstat (limited to 'gexiv2')
-rw-r--r-- | gexiv2/.signature | 4 | ||||
-rw-r--r-- | gexiv2/Pkgfile | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/gexiv2/.signature b/gexiv2/.signature index 301838703..1661589e9 100644 --- a/gexiv2/.signature +++ b/gexiv2/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/fQdzU5d+vqIg6og4TCrKYD4ABYnFYESg0BSO3G18ne56BBlMQ+qVg3hFgUiG5glCqksjDbqfT1yVFREVc8n1AA= -SHA256 (Pkgfile) = 96d769f5075099ca8b4454878e209a91646c57cb68d92b3f1f085ce4c7b049e3 +RWSE3ohX2g5d/YdDr5YnEbUMZYJWKN++O1NxZsZqfxylWEqhpx7zDFmNvbFzfxJUS1Yi/iuPevDalnqD4Y1kM8jRsAERZUj6cg4= +SHA256 (Pkgfile) = 81fcce09a86642bd92fb9bc8ff9adc2174f68d4f20be9ddbc4ecf1fb61fc2151 SHA256 (.footprint) = a800dc1e447667825faf1a603c054ecc21c87e6a22e0843b0cb2362cb3f7a604 SHA256 (gexiv2-0.12.1.tar.xz) = 8aeafd59653ea88f6b78cb03780ee9fd61a2f993070c5f0d0976bed93ac2bd77 diff --git a/gexiv2/Pkgfile b/gexiv2/Pkgfile index f418b3372..cd36ebba5 100644 --- a/gexiv2/Pkgfile +++ b/gexiv2/Pkgfile @@ -9,8 +9,12 @@ release=1 source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz) build() { - cd $name-$version - - meson build --prefix /usr -Dvapi=false -Dgtk_doc=false - DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install + meson setup build $name-$version \ + --prefix=/usr \ + --buildtype=plain \ + -D vapi=false \ + -D gtk_doc=false \ + -D python2_girdir=no + meson compile -C build -j ${JOBS:-1} + DESTDIR=$PKG meson install -C build } |