new packages: libmirage, cdemu-daemon, cdemu-client

This commit is contained in:
suvari
2023-06-21 08:04:26 +03:00
parent e63205c3b7
commit 900446e9b2
13 changed files with 393890 additions and 392566 deletions
@@ -0,0 +1,30 @@
#!/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("-DCMAKE_BUILD_TYPE='Release' \
-DCMAKE_INSTALL_PREFIX='/usr' \
-DCMAKE_INSTALL_LIBDIR='lib' \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_STATIC_LIBS=OFF", sourceDir="..")
def build():
cmaketools.make("-B build")
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
# pisitools.dodoc("COPYING", "README")
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cdemu-daemon</Name>
<Homepage>https://cdemu.sourceforge.io/</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>cdemu-daemon</Icon>
<Summary>CD/DVD-ROM device emulator daemon</Summary>
<Description>This is CDEmu daemon, the daemon part of the cdemu suite, a free, GPL CD/DVD-ROM device emulator for linux.</Description>
<Archive sha1sum="152d5d352e9c19e8651293ee174728e7582a5767" type="tarxz">mirrors://sourceforge/cdemu/cdemu-daemon/cdemu-daemon-3.2.6.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>intltool</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>libao-devel</Dependency>
<Dependency>libmirage-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch></Patch> -->
</Patches>
</Source>
<Package>
<Name>cdemu-daemon</Name>
<RuntimeDependencies>
<Dependency>libao</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libmirage</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/cdemu-daemon</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-06-21</Date>
<Version>3.2.6</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>cdemu-daemon</Name>
<Summary xml:lang="tr">CD/DVD-ROM aygıt emülatör arka plan programı</Summary>
<Description xml:lang="tr">Bu, cdemu paketinin arka plan programı olan CDEmu arka plan programıdır, linux için ücretsiz bir GPL CD/DVD-ROM aygıt öykünücüsüdür.</Description>
</Source>
</PISI>