2018-09-09 02:07:22 +02:00
|
|
|
# Description: GObject wrapper around the Exiv2 photo metadata library
|
2021-01-29 12:33:43 +00:00
|
|
|
# URL: https://wiki.gnome.org/Projects/gexiv2
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: exiv2 gobject-introspection
|
2018-09-09 02:07:22 +02:00
|
|
|
|
|
|
|
name=gexiv2
|
2021-08-20 21:10:48 +02:00
|
|
|
version=0.12.3
|
2018-09-09 02:07:22 +02:00
|
|
|
release=1
|
|
|
|
source=(https://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
2021-01-29 12:33:43 +00:00
|
|
|
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
|
2018-09-09 02:07:22 +02:00
|
|
|
}
|