Merge pull request #2805 from alihanozturk/master

darkice, enblend and hugin fix
This commit is contained in:
Alihan Öztürk
2017-02-15 16:45:26 +02:00
committed by GitHub
4 changed files with 14 additions and 5 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
<Dependency>imagemagick-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">gentoo_prepare.patch</Patch>
<!-- <Patch level="1">gentoo_prepare.patch</Patch> -->
</Patches>
</Source>
+10 -1
View File
@@ -10,13 +10,22 @@ from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
-DENABLE_LAPACK=yes")
-DENABLE_LAPACK=yes", sourceDir="..")
def build():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.rawInstall('DESTDIR="%s"' % get.installDIR())
pisitools.dodoc("AUTHORS", "README", "TODO")
+1
View File
@@ -24,6 +24,7 @@
<Dependency>vigra-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>wxGTK-devel</Dependency>
<Dependency>lcms2-devel</Dependency>
<Dependency>exiv2-devel</Dependency>
<Dependency>fftw3-devel</Dependency>
<Dependency>flann-devel</Dependency>
+2 -3
View File
@@ -9,13 +9,12 @@ from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
pisitools.cxxflags.add("-fpermissive")
autotools.configure("--with-alsa \
--with-faac \
--with-vorbis \
--with-lame \
--without-jack \
--disable-static \
--enable-shared")
--without-jack")
def build():
autotools.make()