1
0
forked from ports/contrib

ebook-tools: Initial commit

This commit is contained in:
Alan Mizrahi 2013-09-28 21:05:40 +09:00
parent beb2f7d9fa
commit 7147ccdbb5
3 changed files with 34 additions and 0 deletions

11
ebook-tools/.footprint Normal file

@ -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
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
-rw-r--r-- root/root usr/include/epub_version.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.2.1
-rwxr-xr-x root/root usr/lib/libepub.so.0.2.1

1
ebook-tools/.md5sum Normal file

@ -0,0 +1 @@
67bce67ceb72dcc3578d6a81ef92b29b ebook-tools-0.2.2.tar.gz

22
ebook-tools/Pkgfile Normal file

@ -0,0 +1,22 @@
# Description: Ebook tools
# URL: http://ebook-tools.sourceforge.net/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: libzip
name=ebook-tools
version=0.2.2
release=1
source=(http://downloads.sourceforge.net/sourceforge/$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
rm $PKG/usr/bin/lit2epub
}