darkice, enblend and hugin fix

This commit is contained in:
alihanozturk
2017-02-15 17:44:29 +03:00
parent e137b364d8
commit eee7f74217
3 changed files with 13 additions and 4 deletions
+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()