blob: 90f31619f014836f40865b3ec2ce07bb6b798bdb (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# $Id$
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=openjpeg2
pkgver=2.1.2
pkgrel=2
pkgdesc="An open source JPEG 2000 codec, version ${pkgver}"
arch=(i686 x86_64)
license=('custom: BSD')
url="http://www.openjpeg.org"
makedepends=('cmake' 'doxygen')
#'fcgi' 'xerces2-java')
depends=('zlib' 'libpng' 'libtiff' 'lcms2')
source=("$pkgname-$pkgver.tar.gz::https://github.com/uclouvain/openjpeg/archive/v$pkgver.tar.gz"
repair_bugs_of_871_and_872.patch::https://github.com/szukw000/openjpeg/commit/cadff5fb.patch)
sha256sums=('4ce77b6ef538ef090d9bde1d5eeff8b3069ab56c4906f083475517c2c023dfa7'
'e352e9480925a31804d965c673545eeaa32d0a47605abaaa09b515ca956058ba')
prepare() {
cd ${srcdir}
mkdir build
# Install doxygen docs to the right directory
sed -i -e "s:DESTINATION\ share/doc:DESTINATION\ share/doc/${pkgname}:" openjpeg-${pkgver}/doc/CMakeLists.txt
# http://seclists.org/oss-sec/2016/q4/649
cd ${srcdir}/openjpeg-$pkgver
patch -Np1 -i ../repair_bugs_of_871_and_872.patch
}
build() {
cd "${srcdir}/build"
# CMAKE flags
# MJ2 executables: '-DBUILD_MJ2:bool=on' (default: 'OFF')
# JPWL executables and JPWL library: '-DBUILD_JPWL:bool=on' (default: 'OFF')
# JPIP client (java compiler recommended) library and executables: '-DBUILD_JPIP:bool=on' (default: 'OFF')
# JPIP server (need fcgi) library and executables: '-DBUILD_JPIP_SERVER:bool=on' (default: 'OFF')
cmake "../openjpeg-${pkgver}" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_DOC=on
# -DBUILD_MJ2=ON \
# -DBUILD_JPWL=ON \
# -DBUILD_JPIP=ON \
# -DBUILD_JPIP_SERVER=ON \
# -DBUILD_JP3D=ON # --help -LAH
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/openjpeg2"
mv ${pkgdir}/usr/share/doc/openjpeg-2.1/LICENSE ${pkgdir}/usr/share/licenses/openjpeg2
rmdir ${pkgdir}/usr/share/doc/openjpeg-2.1
}
|