summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extra/ebook-tools/.footprint11
-rw-r--r--extra/ebook-tools/.md5sum1
-rwxr-xr-xextra/ebook-tools/Pkgfile21
3 files changed, 33 insertions, 0 deletions
diff --git a/extra/ebook-tools/.footprint b/extra/ebook-tools/.footprint
new file mode 100644
index 000000000..8cc08bc38
--- /dev/null
+++ b/extra/ebook-tools/.footprint
@@ -0,0 +1,11 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/einfo
+-rwxr-xr-x root/root usr/bin/lit2epub
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/epub.h
+-rw-r--r-- root/root usr/include/epub_shared.h
+drwxr-xr-x root/root usr/lib/
+lrwxrwxrwx root/root usr/lib/libepub.so -> libepub.so.0
+lrwxrwxrwx root/root usr/lib/libepub.so.0 -> libepub.so.0.1.1
+-rwxr-xr-x root/root usr/lib/libepub.so.0.1.1
diff --git a/extra/ebook-tools/.md5sum b/extra/ebook-tools/.md5sum
new file mode 100644
index 000000000..1ce081fe1
--- /dev/null
+++ b/extra/ebook-tools/.md5sum
@@ -0,0 +1 @@
+15946af6f946eabe8247cdef9ada2b88 ebook-tools-0.1.1.tar.gz
diff --git a/extra/ebook-tools/Pkgfile b/extra/ebook-tools/Pkgfile
new file mode 100755
index 000000000..22cf78729
--- /dev/null
+++ b/extra/ebook-tools/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Outil pour le rendu des documents au format ebook
+# URL: http://sourceforge.net/projects/ebook-tools
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: libxml2, cmake
+
+name=ebook-tools
+version=0.1.1
+release=1
+source=(http://downloads.sourceforge.net/sourceforge/$name/$name/$name/$name/$name/$name/$name/$name-$version.tar.gz)
+
+build() {
+cd $name-$version
+ mkdir build
+ cd build
+ cmake .. -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+ make DESTDIR=$PKG install
+}
+