blob: d55534f3ade3ceeaa8499b185508a1c64628e407 (
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: outil seul ou plugin pour Gimp de conversion de fichier raw (inclu dcraw)
# URL: http://ufraw.sourceforge.net/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gimp, exiv2, lcms, libexif, libjpeg, libpng, libtiff, gtkimageview
# Run on: exiv2,lcms,libexif,libjpeg,libpng,libtiff,gtkimageview
name=ufraw
version=0.16
release=1
source=(http://downloads.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
build() {
cd ufraw-$version
./configure --prefix=/usr \
--enable-extras \
--enable-mime \
--enable-openmp \
--with-exiv2
sed -i 's@-ffast-math -fomit-frame-pointer -W -Wall -O3@$CFLAGS@g' Makefile
make
make DESTDIR=$PKG install
}
|