From 2b329689e4123471141e067c4b10a435d8fa9ba5 Mon Sep 17 00:00:00 2001 From: Tim Biermann Date: Sun, 11 Aug 2019 11:14:10 +0200 Subject: [PATCH] libzmf: initial commit, version 0.0.2 --- libzmf/.footprint | 16 ++++++++++++++++ libzmf/.signature | 5 +++++ libzmf/Pkgfile | 17 +++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 libzmf/.footprint create mode 100644 libzmf/.signature create mode 100644 libzmf/Pkgfile diff --git a/libzmf/.footprint b/libzmf/.footprint new file mode 100644 index 000000000..a43ff3221 --- /dev/null +++ b/libzmf/.footprint @@ -0,0 +1,16 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/zmf2raw +-rwxr-xr-x root/root usr/bin/zmf2svg +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/libzmf-0.0/ +drwxr-xr-x root/root usr/include/libzmf-0.0/libzmf/ +-rw-r--r-- root/root usr/include/libzmf-0.0/libzmf/ZMFDocument.h +-rw-r--r-- root/root usr/include/libzmf-0.0/libzmf/libzmf.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libzmf-0.0.la +lrwxrwxrwx root/root usr/lib/libzmf-0.0.so -> libzmf-0.0.so.0.0.2 +lrwxrwxrwx root/root usr/lib/libzmf-0.0.so.0 -> libzmf-0.0.so.0.0.2 +-rwxr-xr-x root/root usr/lib/libzmf-0.0.so.0.0.2 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libzmf-0.0.pc diff --git a/libzmf/.signature b/libzmf/.signature new file mode 100644 index 000000000..cf5550af4 --- /dev/null +++ b/libzmf/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF32rrzVHLElAx6gap0JqClUrJsNxPB0wUNGCXGiVOXyEiPwcD3eyV7BWmr7NmtfOvn9UAxagxT56tLUTV9HbvYAo= +SHA256 (Pkgfile) = b2ad48cb235e09df9456ee54672eb806c385ee5113610dd433b73ff2ff4a4f63 +SHA256 (.footprint) = fe54fc64685acc824838440591d000ef3d8029e2dfd686f6dbab979a63158766 +SHA256 (libzmf-0.0.2.tar.xz) = 27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22 diff --git a/libzmf/Pkgfile b/libzmf/Pkgfile new file mode 100644 index 000000000..4a4d741b6 --- /dev/null +++ b/libzmf/Pkgfile @@ -0,0 +1,17 @@ +# Description: a library for import of Zoner drawing and bitmap files +# URL: https://wiki.documentfoundation.org/DLP/Libraries/libzmf +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: icu libpng librevenge + +name=libzmf +version=0.0.2 +release=1 +source=(https://dev-www.libreoffice.org/src/$name/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr \ + --disable-werror + make + make DESTDIR=$PKG install +}