diff options
author | Tim Biermann <tbier@posteo.de> | 2019-08-11 11:13:57 +0200 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2019-08-11 11:13:57 +0200 |
commit | b3d348af53ef8f1a907f23f1b8fbaee1fc0705a3 (patch) | |
tree | 5bd6b688b55556b7bb52844f8244702f0c84b9db | |
parent | 526c63fbbbe0270d5a8de1ecda48ed1fe7d53e6b (diff) | |
download | contrib-b3d348af53ef8f1a907f23f1b8fbaee1fc0705a3.tar.gz contrib-b3d348af53ef8f1a907f23f1b8fbaee1fc0705a3.tar.xz |
libepubgen: initial commit, version 0.1.1
-rw-r--r-- | libepubgen/.footprint | 18 | ||||
-rw-r--r-- | libepubgen/.signature | 5 | ||||
-rw-r--r-- | libepubgen/Pkgfile | 16 |
3 files changed, 39 insertions, 0 deletions
diff --git a/libepubgen/.footprint b/libepubgen/.footprint new file mode 100644 index 000000000..a2ecfe56e --- /dev/null +++ b/libepubgen/.footprint @@ -0,0 +1,18 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/libepubgen-0.1/ +drwxr-xr-x root/root usr/include/libepubgen-0.1/libepubgen/ +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/EPUBDrawingGenerator.h +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/EPUBPackage.h +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/EPUBPresentationGenerator.h +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/EPUBTextGenerator.h +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/libepubgen-api.h +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/libepubgen-decls.h +-rw-r--r-- root/root usr/include/libepubgen-0.1/libepubgen/libepubgen.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libepubgen-0.1.la +lrwxrwxrwx root/root usr/lib/libepubgen-0.1.so -> libepubgen-0.1.so.1.0.1 +lrwxrwxrwx root/root usr/lib/libepubgen-0.1.so.1 -> libepubgen-0.1.so.1.0.1 +-rwxr-xr-x root/root usr/lib/libepubgen-0.1.so.1.0.1 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libepubgen-0.1.pc diff --git a/libepubgen/.signature b/libepubgen/.signature new file mode 100644 index 000000000..ad8d1e879 --- /dev/null +++ b/libepubgen/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF33u8Kxvge8rYHqz33nP6DMv1DL06Z6xlx160dH4Hx9YuWDNql8m5WSC/knio7qS1rhTWkzbtvxlfXygEqLttegU= +SHA256 (Pkgfile) = fa4bb2d0c8dc8ea36b2f32e33f64b6735a145d2fa4d9297d642d3b033b235994 +SHA256 (.footprint) = 9da70127537b99095fadd9288bf76791e93a56ee920c0621eb8af2d494981285 +SHA256 (libepubgen-0.1.1.tar.xz) = 03e084b994cbeffc8c3dd13303b2cb805f44d8f2c3b79f7690d7e3fc7f6215ad diff --git a/libepubgen/Pkgfile b/libepubgen/Pkgfile new file mode 100644 index 000000000..59904da16 --- /dev/null +++ b/libepubgen/Pkgfile @@ -0,0 +1,16 @@ +# Description: an EPUB generator for librevenge +# URL: https://sourceforge.net/projects/libepubgen/ +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: librevenge + +name=libepubgen +version=0.1.1 +release=1 +source=(https://sourceforge.net/projects/$name/files/$name-$version/$name-$version.tar.xz) + +build() { + cd $name-$version + ./configure --prefix=/usr + make + make DESTDIR=$PKG install +} |