From fcbcf6be38c173cea692aa42aef1af72f8160655 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Fri, 30 Aug 2019 11:19:39 +0200 Subject: [PATCH] exiv2: update version 0.,26.0 - 0.27.2 - fix URL - remove sample binaries - disable deprecated ssh - use defaults --- exiv2.be0 | 28 ++++++---------------------- 1 file changed, 6 insertions(+), 22 deletions(-) diff --git a/exiv2.be0 b/exiv2.be0 index a3b747cca..98c2341e2 100755 --- a/exiv2.be0 +++ b/exiv2.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION exiv2-0.26-0 +# BEE_VERSION exiv2-0.27.2-0 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -9,7 +9,7 @@ ## The source URL(s) define the location of the sources that will be ## downloaded. Version variables may be used to simplify reuse of this bee-file. -SRCURL[0]="http://www.exiv2.org/builds/exiv2-${PKGVERSION}-trunk.tar.gz" +SRCURL[0]="https://www.exiv2.org/builds/exiv2-${PKGVERSION}-Source.tar.gz" ############################################################################### ## Add URLs/pathes to patch files to the PATCHURL array. @@ -55,8 +55,10 @@ SRCURL[0]="http://www.exiv2.org/builds/exiv2-${PKGVERSION}-trunk.tar.gz" mee_configure() { bee_configure \ - --enable-video \ - --enable-webready + -DEXIV2_BUILD_SAMPLES=no \ + -DEXIV2_ENABLE_WEBREADY=yes \ + -DEXIV2_ENABLE_SSH=off \ + -DEXIV2_ENABLE_CURL=yes } #mee_build() { @@ -67,21 +69,3 @@ mee_configure() { # bee_install #} ## by default this may be 'make install DESTDIR="${D}"' - -############################################################################### -## -## Additional hints: -## -## The name of this bee-file should follow the following naming convention: -## pkgname-pkgversion-pkgrevision.bee -## -## You may remove all comments as long as SRCURL[${PKGVERSION}] is set. -## -## Everything in this file will be executed in a bash environment. -## -## Build the package by executing -## './pkg-version-N.bee' or -## 'beesh ./pkg-version-N.bee' -## -## see http://beezinga.org/ -##