blob: b989db6bd409a297c70cd130334efbe63d33a46e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# 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, libzip
# Run on: libxml2,libzip
name=ebook-tools
version=0.1.1
release=1
source=(http://downloads.sourceforge.net/sourceforge/$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
}
|