libzmf: initial commit, version 0.0.2

This commit is contained in:
Tim Biermann 2019-08-11 11:14:10 +02:00
parent 3a26ffde65
commit 2b329689e4
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 38 additions and 0 deletions

16
libzmf/.footprint Normal file
View File

@ -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

5
libzmf/.signature Normal file
View File

@ -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

17
libzmf/Pkgfile Normal file
View File

@ -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
}