diff options
author | sibel <lesibel at free dot fr> | 2010-08-13 06:40:02 +0200 |
---|---|---|
committer | sibel <lesibel at free dot fr> | 2010-08-13 06:40:02 +0200 |
commit | a4c154993f0490da2fa7f8af9b7243f2c28b9bdd (patch) | |
tree | aed268cf972d9c14aa6d6aaca9ed038ce557294e /extra/hugin/Pkgfile | |
parent | e04590b897fb9181850038431fd4bb951c6dbda7 (diff) | |
download | nutyx-extra-a4c154993f0490da2fa7f8af9b7243f2c28b9bdd.tar.gz nutyx-extra-a4c154993f0490da2fa7f8af9b7243f2c28b9bdd.tar.bz2 nutyx-extra-a4c154993f0490da2fa7f8af9b7243f2c28b9bdd.tar.xz nutyx-extra-a4c154993f0490da2fa7f8af9b7243f2c28b9bdd.zip |
Ajout de hugin#2010.0.0-1
Diffstat (limited to 'extra/hugin/Pkgfile')
-rwxr-xr-x | extra/hugin/Pkgfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extra/hugin/Pkgfile b/extra/hugin/Pkgfile new file mode 100755 index 000000000..91e961679 --- /dev/null +++ b/extra/hugin/Pkgfile @@ -0,0 +1,27 @@ +# Description: Utilitaires pour la realisation de panorama +# URL: http://hugin.sourceforge.net/ +# Maintainer: NuTyX packager team +# Packager: lesibel at free dot fr +# Depends on: wxgtk, libpano13, boost, enblend-enfuse, exiv2, openexr, autopano-sift-c, lapack, desktop-file-utils, p5-exiftool + + +name=hugin +version=2010.0.0 +release=1 +source=( http://downloads.sourceforge.net/$name/$name-$version.tar.gz + libpng14.patch) + +build() { + cd $SRC + patch -Np0 -i libpng14.patch + mkdir build + cd build + cmake "$SRC/$name-$version" \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_EXE_LINKER_FLAGS="-lpthread" \ + -DENABLE_LAPACK=yes + make -j3 + make DESTDIR=$PKG install +} + |