Merge pull request #16714 from suvari/master

calf: fix build
This commit is contained in:
Kamil ATLI
2025-05-24 12:15:46 +03:00
committed by GitHub
2 changed files with 17 additions and 14 deletions
+13 -11
View File
@@ -1,24 +1,26 @@
#!/usr/bin/python #!/usr/bin/env python
#!/usr/bin/python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get from pisi.actionsapi import cmaketools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup(): def setup():
autotools.autoreconf("-vif") cmaketools.configure("-DCMAKE_INSTALL_PREFIX='/usr' \
autotools.configure() -DCMAKE_BUILD_TYPE='None' \
-DWANT_EXPERIMENTAL=ON")
def build(): def build():
autotools.make() cmaketools.make()
#def check():
#cmaketools.make("test")
def check():
autotools.make("check")
def install(): def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR()) cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "README")
pisitools.dodoc("README*", "COPYING")
+4 -3
View File
@@ -13,8 +13,9 @@
<Icon>calf</Icon> <Icon>calf</Icon>
<Summary>an audio plug-in pack for LV2 and JACK environments</Summary> <Summary>an audio plug-in pack for LV2 and JACK environments</Summary>
<Description>Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments under LINUX operating systems. The suite contains lots of effects (delay, modulation, signal processing, filters, equalizers, dynamics, distortion and mastering effects), instruments (SF2 player, organ simulator and a monophonic synthesizer) and tools (analyzer, mono/stereo tools, crossovers). Calf Studio Gear aims for a professional audience.</Description> <Description>Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments under LINUX operating systems. The suite contains lots of effects (delay, modulation, signal processing, filters, equalizers, dynamics, distortion and mastering effects), instruments (SF2 player, organ simulator and a monophonic synthesizer) and tools (analyzer, mono/stereo tools, crossovers). Calf Studio Gear aims for a professional audience.</Description>
<Archive sha1sum="3b9932814f5e20c46993f15a3fc1e239f0dda50a" type="targz">https://calf-studio-gear.org/files/calf-0.90.5.tar.gz</Archive> <Archive sha1sum="d91a004c48132117d7c804ae58c1d62b6815c26f" type="targz">https://github.com/calf-studio-gear/calf/archive/refs/tags/0.90.7.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>atk-devel</Dependency> <Dependency>atk-devel</Dependency>
<Dependency>lv2-devel</Dependency> <Dependency>lv2-devel</Dependency>
<Dependency>lash-devel</Dependency> <Dependency>lash-devel</Dependency>
@@ -75,8 +76,8 @@
<History> <History>
<Update release="2"> <Update release="2">
<Date>2025-04-30</Date> <Date>2025-04-30</Date>
<Version>0.90.5</Version> <Version>0.90.7</Version>
<Comment>First release</Comment> <Comment>Version bump</Comment>
<Name>Pisi Linux</Name> <Name>Pisi Linux</Name>
<Email>admin@pisilinux.org</Email> <Email>admin@pisilinux.org</Email>
</Update> </Update>