![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 2b329689e4123471141e067c4b10a435d8fa9ba5 Author: Tim Biermann <tbier@posteo.de> Date: Sun Aug 11 11:14:10 2019 +0200 libzmf: initial commit, version 0.0.2 diff --git a/libzmf/.footprint b/libzmf/.footprint new file mode 100644 index 00000000..a43ff322 --- /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 00000000..cf5550af --- /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 00000000..4a4d741b --- /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 +}