blob: c3dc7c1fa7ba304e513908695473b52830a1ca7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Implémentation libre du format DjVu (Déjà Vu)
# URL: http://djvu.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed
# Depends on: libjpeg, libtiff
# Run on: libjpeg,libtiff
name=djvulibre
version=3.5.23
release=1
source=(http://downloads.sourceforge.net/djvu/$name-$version.tar.gz\
http://nutyx.meticul.eu/files/patchs/$name/djvulibre-3.5.23-gcc-1.patch)
build() {
cd $name-$version
patch -Np1 -i ../djvulibre-3.5.23-gcc-1.patch
./configure --prefix=/usr \
--disable-djview \
--disable-desktopfiles
make
make DESTDIR=$PKG install
}
|