milis/talimatname/genel/openjpeg2/talimat

27 lines
582 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: OpenJPEG, JPEG-2000 standardının açık kaynaklı bir uygulamasıdır.
# URL: http://www.ijg.org/
# Packager: milisarge
# Depends on: cmake lcms2 libpng libtiff
_name=openjpeg
name=openjpeg2
version=2.1.0
release=1
source=( http://downloads.sourceforge.net/openjpeg.mirror/${_name}-$version.tar.gz )
build() {
cd openjpeg-$version
mkdir -v build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
make
make DESTDIR=$PKG install
pushd ../doc
for man in man/man?/* ; do
install -v -D -m 644 $man $PKG/usr/share/$man
done
popd
}