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,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cdemu-client</Name>
<Homepage>https://cdemu.sourceforge.io/</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPL</License>
<Icon>cdemu-client</Icon>
<Summary>Simple command-line client for controlling cdemu-daemon</Summary>
<Description>CDemu - a virtual CD/DVD drive for Linux. Project includes Linux kernel module, userspace utilities.</Description>
<Archive sha1sum="951b1f6ee1ebc9692c8a7de0176a885a27a6d23b" type="tarxz">mirrors://sourceforge/cdemu/cdemu-client/cdemu-client-3.2.5.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>intltool</Dependency>
<Dependency>bash-completion</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch></Patch> -->
</Patches>
</Source>
<Package>
<Name>cdemu-client</Name>
<RuntimeDependencies>
<Dependency>cdemu-daemon</Dependency>
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/bash-completion/completions/cdemu</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-06-21</Date>
<Version>3.2.5</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-client</Name>
<Summary xml:lang="tr">Cdemu-daemon'u kontrol etmek için basit komut satırı istemcisi</Summary>
<Description xml:lang="tr">CDemu - Linux için sanal bir CD/DVD sürücüsü. Proje, Linux çekirdek modülü ve kullanıcı alanı yardımcı programlarını içerir.</Description>
</Source>
</PISI>