]> saetta.ns0.it Git - msys2/commitdiff
libexempi: nuovo pacchetto WIP.
authorAndrea Zagli <azagli@libero.it>
Sun, 5 Apr 2015 09:33:32 +0000 (11:33 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 21 Apr 2018 13:13:20 +0000 (15:13 +0200)
packages/mingw-w64-libexempi/001-win.patch [new file with mode: 0644]
packages/mingw-w64-libexempi/PKGBUILD [new file with mode: 0644]

diff --git a/packages/mingw-w64-libexempi/001-win.patch b/packages/mingw-w64-libexempi/001-win.patch
new file mode 100644 (file)
index 0000000..84afdcc
--- /dev/null
@@ -0,0 +1,21 @@
+--- ./source/common/LargeFileAccess.hpp.orig   2015-03-28 10:06:04.912557700 +0100
++++ ./source/common/LargeFileAccess.hpp        2015-03-28 10:06:26.560865300 +0100
+@@ -14,10 +14,8 @@
+ #include <stdio.h>  // The assert macro needs printf.
+ #include <string>
+-#if XMP_WinBuild
+       #include <Windows.h>
+       #define snprintf _snprintf
+-#else
+       #if 0 // No longer needed, but retained to avoid merge conflicts
+               #include <Files.h>
+       #endif
+@@ -28,7 +26,6 @@
+       #include <dirent.h>
+       #include <sys/stat.h>
+       #include <sys/types.h>
+-#endif
+ #include "XMP_Const.h"
+ #include "EndianUtils.hpp"
diff --git a/packages/mingw-w64-libexempi/PKGBUILD b/packages/mingw-w64-libexempi/PKGBUILD
new file mode 100644 (file)
index 0000000..1dcccad
--- /dev/null
@@ -0,0 +1,48 @@
+# Maintainer: Andrea Zagli <andrea.zagli.free@gmail.com>
+
+_realname=exempi
+pkgname="${MINGW_PACKAGE_PREFIX}-lib${_realname}"
+pkgver=2.2.2
+pkgrel=1
+arch=('any')
+pkgdesc="A library to parse XMP metadata as defined by the specification (mingw-w64)"
+depends=("${MINGW_PACKAGE_PREFIX}-expat"
+         "${MINGW_PACKAGE_PREFIX}-libiconv"
+         "${MINGW_PACKAGE_PREFIX}-zlib")
+makedepends=()
+options=('strip' 'staticlibs')
+license=("BSD")
+url="http://libopenraw.freedesktop.org/wiki/Exempi/"
+source=(http://libopenraw.freedesktop.org/download/${_realname}-${pkgver}.tar.bz2
+        001-win.patch)
+sha256sums=('0e7ad0e5e61b6828e38d31a8cc59c26c9adeed7edf4b26708c400beb6a686c07'
+            '7e387c8d0f28a59df08d68d8175795f7145cf59642df61421cb5634a6f66b8e9')
+
+prepare() {
+  cd ${_realname}-${pkgver}
+
+  patch -b -V simple -p1 -i ${srcdir}/001-win.patch
+
+  autoreconf -fiv
+}
+
+build() {
+  mkdir -p build-${MINGW_CHOST}
+  cd build-${MINGW_CHOST}
+
+  ../${_realname}-${pkgver}/configure \
+    --host=${MINGW_CHOST} \
+    --target=${MINGW_CHOST} \
+    --build=${MINGW_CHOST} \
+    --prefix=${MINGW_PREFIX} \
+    --libexecdir=${MINGW_PREFIX}/lib \
+    --enable-unittest=no
+  make
+}
+
+package() {
+  cd "$srcdir/build-${MINGW_CHOST}"
+  make DESTDIR=$pkgdir install
+
+  install -Dm644 "${srcdir}/${_realname}-${pkgver}/COPYING" "${pkgdir}${MINGW_PREFIX}/share/licenses/lib${_realname}/COPYING"
+}