pulseaudio-qt6

This commit is contained in:
Rmys
2024-03-06 17:21:42 +03:00
parent 90559cc204
commit b99f16da40
7 changed files with 196 additions and 8 deletions
@@ -0,0 +1,33 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DBUILD_QCH=ON \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DQT_MAJOR_VERSION=6 \
-DBUILD_TESTING=OFF", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
#cmaketools.make("-C build doc")
def install():
pisitools.dodoc("README*", "LICENSES/*")
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dohtml("doc/html/*")
#pisitools.remove("/usr/bin/lit2epub")
+68
View File
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>pulseaudio-qt6</Name>
<Homepage>https://kde.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv3</License>
<IsA>library</IsA>
<Summary>Libpulse için Qt bağları</Summary>
<Description>Libpulse için Qt bağları</Description>
<Archive sha1sum="e9a418bceeca9962cf8ae983c545f2cb53d707ad" type="tarxz">https://download.kde.org/stable/pulseaudio-qt/pulseaudio-qt-1.4.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>extra-cmake-modules-kf6</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency versionFrom="6.6.2">qt6-sql-mysql</Dependency>
<Dependency versionFrom="6.6.2">qt6-sql-sqlite</Dependency>
<Dependency versionFrom="6.6.2">qt6-sql-odbc</Dependency>
<Dependency versionFrom="6.6.2">qt6-sql-postgresql</Dependency>
<Dependency versionFrom="6.6.2">qt6-base-devel</Dependency>
<Dependency versionFrom="6.6.2">qt6-assistant-devel</Dependency>
<Dependency versionFrom="6.6.2">qt6-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>pulseaudio-qt6</Name>
<RuntimeDependencies>
<Dependency>qt6-base</Dependency>
<Dependency>pulseaudio-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>pulseaudio-qt6-devel</Name>
<Summary>Development files for pulseaudio-qt6</Summary>
<RuntimeDependencies>
<Dependency>qt6-base-devel</Dependency>
<Dependency release="current">pulseaudio-qt6</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2024-03-06</Date>
<Version>1.4.0</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>pulseaudio-qt</Name>
<Summary xml:lang="tr">Libpulse için Qt bağları</Summary>
<Description xml:lang="tr">Libpulse için Qt bağları</Description>
</Source>
</PISI>