music player daemon.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
@@ -10,21 +10,16 @@ from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-vif")
|
||||
autotools.configure("--disable-static \
|
||||
--without-docdir")
|
||||
#FIXME: documentation is temporarily disabled since update release 7.
|
||||
#--with-documentation=/usr/share/doc/%s" % get.srcNAME())
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
#def check():
|
||||
#autotools.make("check")
|
||||
def check():
|
||||
autotools.make("-k check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
#pisitools.remove("/usr/share/doc/libupnp/IXML_Programming_Guide.pdf")
|
||||
#pisitools.remove("/usr/share/doc/libupnp/UPnP_Programming_Guide.pdf")
|
||||
|
||||
|
||||
@@ -1,24 +1,25 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libupnp</Name>
|
||||
<Homepage>http://pupnp.sourceforge.net/</Homepage>
|
||||
<Homepage>https://github.com/pupnp/pupnp</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Portable UPnP library</Summary>
|
||||
<Summary>Portable UPnP library.</Summary>
|
||||
<Description>The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.</Description>
|
||||
<Archive sha1sum="6adb96f864bb030263b8b57b2ab4610eeddb37b5" type="tarbz2">https://sourceforge.net/projects/pupnp/files/pupnp/libUPnP%201.6.25/libupnp-1.6.25.tar.bz2</Archive>
|
||||
<Archive sha1sum="b14cff9ddd7cfe7f0e4bf552387122a31770f51f" type="tarbz2">
|
||||
mirrors://sourceforge/pupnp/libupnp-1.14.0.tar.bz2
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>kernel-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">pthread-flag.patch</Patch> -->
|
||||
<!-- <Patch>CVE-2016-6255.patch</Patch> -->
|
||||
<!-- <Patch level="1">CVE-2020-13848.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
@@ -32,7 +33,7 @@
|
||||
|
||||
<Package>
|
||||
<Name>libupnp-devel</Name>
|
||||
<Summary>Development files for libupnp</Summary>
|
||||
<Summary>Development files for libupnp.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libupnp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -43,6 +44,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-12-13</Date>
|
||||
<Version>1.14.0</Version>
|
||||
<Comment>Ver. bump</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>wascheme@tuta.io</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-07</Date>
|
||||
<Version>1.6.25</Version>
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
j = "-DCMAKE_BUILD_TYPE=release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DENABLE_DOCUMENTATION=ON \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DENABLE_UTILS=ON -L \
|
||||
"
|
||||
|
||||
def setup():
|
||||
shelltools.system("./bootstrap")
|
||||
cmaketools.configure(j)
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
for t in ["utils/nfs-cat", "utils/nfs-cp", "utils/nfs-ls"]:
|
||||
pisitools.dobin(t)
|
||||
|
||||
pisitools.dodoc("COPYING", "README")
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libnfs</Name>
|
||||
<Homepage>https://github.com/sahlberg/libnfs</Homepage>
|
||||
<Packager>
|
||||
<Name>Mogyorósi Petra</Name>
|
||||
<Email>squeakymouse@protonmail.com</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<License>GPLv3</License>
|
||||
<License>BSDv2</License>
|
||||
<PartOf>network.connection</PartOf>
|
||||
<IsA>library</IsA>
|
||||
<Summary>NFS client library</Summary>
|
||||
<Description>LIBNFS is a client library for accessing NFS shares over a network.</Description>
|
||||
<Archive sha1sum="004de9e12cf726d7d5fe09b7aa47d14c3703e70f" type="targz">
|
||||
https://github.com/sahlberg/libnfs/archive/libnfs-4.0.0.tar.gz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libnfs</Name>
|
||||
<Summary>NFS client library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glibc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/libnfs.so</Path>
|
||||
<Path fileType="library">/usr/lib/libnfs.so.11.0.0</Path>
|
||||
<Path fileType="library">/usr/lib/libnfs.so.2.0.0</Path>
|
||||
<Path fileType="man">/usr/share/man/*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libnfs-devel</Name>
|
||||
<Summary>Development files for libnfs</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libnfs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/*</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig/*</Path>
|
||||
<Path fileType="config">/usr/lib/cmake/*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-12-13</Date>
|
||||
<Version>4.0.0</Version>
|
||||
<Comment>Ver. bump</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>wascheme@tuta.io</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-07-03</Date>
|
||||
<Version>3.0.0</Version>
|
||||
<Comment>Latest revision from GitHub</Comment>
|
||||
<Name>Mogyorósi Petra</Name>
|
||||
<Email>squeakymouse@protonmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libnfs</Name>
|
||||
<Description xml:lang="hu">A libnfs egy NFS-kezelő könyvtár, ami háromféle módon tud hozzáférést nyújtani az NFS-szolgáltatásokhoz</Description>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>libnfs-devel</Name>
|
||||
<Summary xml:lang="hu">A libnfs fejlécei</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user