add clementine and dep

This commit is contained in:
alihanozturk
2017-01-06 17:23:02 +03:00
parent 07e8cf917c
commit b70f720efc
23 changed files with 794 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
autotools.configure("\
--with-html-dir=/usr/share/doc/%s/html \
--with-temp-mount-dir=/run/libgpod \
--without-hal \
--without-mono \
--disable-gtk-doc \
--disable-static \
--enable-udev \
" % get.srcNAME())
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# For temporary mounts
pisitools.dodir("/run/libgpod")
# rm "/usr/lib/pkgconfig/libgpod-sharp.pc"
pisitools.remove("/usr/lib/pkgconfig/libgpod-sharp.pc")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*")
+93
View File
@@ -0,0 +1,93 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libgpod</Name>
<Homepage>http://www.gtkpod.org/libgpod.html</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>A library to access the contents of an iPod</Summary>
<Description>libgpod is a library to access the contents of an iPod. It supports playlists, smart playlists, playcounts, ratings, podcasts, album artwork, photos, etc.</Description>
<Archive sha1sum="5b5f692fef880d714dad71aa21e1737258fa878c" type="tarbz2">mirrors://sourceforge/gtkpod/libgpod-0.8.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>docbook-xml</Dependency>
<Dependency>python-mutagen</Dependency>
<Dependency>libplist-devel</Dependency>
<Dependency>sg3_utils-devel</Dependency>
<Dependency>libimobiledevice-devel</Dependency>
<Dependency>python-pygobject-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libgpod</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libplist</Dependency>
<Dependency>sg3_utils</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libimobiledevice</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/lib/udev</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/hal</Path>
<Path fileType="data">/lib/udev/rules.d</Path>
<Path fileType="data">/run/libgpod</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>python-libgpod</Name>
<PartOf>programming.language.python</PartOf>
<Summary>Python bindings for libgpod</Summary>
<RuntimeDependencies>
<Dependency release="current">libgpod</Dependency>
<Dependency>libplist</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>python-mutagen</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
</Files>
</Package>
<Package>
<Name>libgpod-devel</Name>
<Summary>Development files for libgpod</Summary>
<RuntimeDependencies>
<Dependency release="current">libgpod</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>libimobiledevice-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2017-01-04</Date>
<Version>0.8.3</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libgpod</Name>
<Summary xml:lang="tr">iPod üzerindeki verilere ulaşmak için kullanılan bir kütüphane</Summary>
<Description xml:lang="tr">libgpod, iPod taşınabilir medya oynatıcıları üzerindeki verilere ulaşmak için kullanılan bir kütüphanedir. Kütüphane, gelişmiş parça listesi, parça istatistikleri, podcast gibi ileri özellikleri destekler. libgpod, gtkpod projesi temel alınarak geliştirilmiştir.</Description>
<Description xml:lang="fr">libgpod est une librairie partagée permettant d'accéder au contenu d'un iPod. Cette librairie est basée sur le code du projet gtkpod.</Description>
</Source>
<Package>
<Name>libgpod-devel</Name>
<Summary xml:lang="tr">libgpod için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>python-libgpod</Name>
<Summary xml:lang="tr">libgpod için Python bağlayıcıları</Summary>
</Package>
</PISI>