@@ -17,15 +17,16 @@
|
||||
<Archive sha1sum="c1707e8ae38b299c07e6c18ff3c26a4b928d03bf" type="tarxz">https://www.kernel.org/pub/linux/bluetooth/bluez-5.27.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cups-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>libnl-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>gstreamer-devel</Dependency>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-devel</Dependency>
|
||||
<!--Dependency>gst-plugins-base-devel</Dependency-->
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>readline-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">bluez-5.27-obexd_without_systemd-1.patch</Patch>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.bluetooth</Name>
|
||||
</PISI>
|
||||
@@ -4,10 +4,13 @@
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
@@ -48,9 +48,9 @@
|
||||
<Package>
|
||||
<Name>orc-devel</Name>
|
||||
<Summary>orc için geliştirme dosyaları</Summary>
|
||||
<RunTimeDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">orc</Dependency>
|
||||
</RunTimeDependencies>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include/</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
|
||||
@@ -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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--with-pic \
|
||||
--enable-sndfile \
|
||||
--disable-static \
|
||||
--enable-shared \
|
||||
--disable-fftw \
|
||||
--disable-dependency-tracking")
|
||||
|
||||
# Remove RPATH
|
||||
pisitools.dosed("libtool", "^hardcode_libdir_flag_spec=.*", "hardcode_libdir_flag_spec=\"\"")
|
||||
pisitools.dosed("libtool", "^runpath_var=LD_RUN_PATH", "runpath_var=DIE_RPATH_DIE")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
@@ -0,0 +1,32 @@
|
||||
Index: libsamplerate-0.1.3/examples/Makefile.am
|
||||
===================================================================
|
||||
--- libsamplerate-0.1.3.orig/examples/Makefile.am
|
||||
+++ libsamplerate-0.1.3/examples/Makefile.am
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
bin_PROGRAMS = sndfile-resample
|
||||
|
||||
-noinst_PROGRAMS = varispeed-play timewarp-file
|
||||
+EXTRA_PROGRAMS = varispeed-play timewarp-file
|
||||
|
||||
SAMPLERATEDIR =../src
|
||||
INCLUDES = -I$(srcdir)/$(SAMPLERATEDIR) @OS_SPECIFIC_INCLUDES@
|
||||
Index: libsamplerate-0.1.3/tests/Makefile.am
|
||||
===================================================================
|
||||
--- libsamplerate-0.1.3.orig/tests/Makefile.am
|
||||
+++ libsamplerate-0.1.3/tests/Makefile.am
|
||||
@@ -1,4 +1,4 @@
|
||||
-noinst_PROGRAMS = misc_test termination_test simple_test callback_test \
|
||||
+EXTRA_PROGRAMS = misc_test termination_test simple_test callback_test \
|
||||
reset_test multi_channel_test snr_bw_test \
|
||||
float_short_test varispeed_test callback_hang_test \
|
||||
src-evaluate throughput_test
|
||||
@@ -55,7 +55,7 @@ throughput_test_LDADD = $(SAMPLRATEDIR)
|
||||
|
||||
#===============================================================================
|
||||
|
||||
-check: $(noinst_PROGRAMS)
|
||||
+check: $(EXTRA_PROGRAMS)
|
||||
date
|
||||
uname -a
|
||||
./misc_test
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libsamplerate</Name>
|
||||
<Homepage>http://www.mega-nerd.com/SRC/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio</Summary>
|
||||
<Description>Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects.</Description>
|
||||
<Archive sha1sum="e5fe82c4786be2fa33ca6bd4897db4868347fe70" type="targz">http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">dontbuild-tests-examples.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libsamplerate</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libsamplerate-devel</Name>
|
||||
<Summary>Development files for libsamplerate</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libsamplerate</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-25</Date>
|
||||
<Version>0.1.8</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-01</Date>
|
||||
<Version>0.1.8</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-10-17</Date>
|
||||
<Version>0.1.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libsamplerate</Name>
|
||||
<Summary xml:lang="tr">libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü</Summary>
|
||||
<Summary xml:lang="fr">Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter).</Summary>
|
||||
<Description xml:lang="tr">libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libsamplerate-devel</Name>
|
||||
<Summary xml:lang="tr">libsamplerate için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">libsamplerate için geliştirme dosyaları</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -23,8 +23,8 @@
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>xcb-proto</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>lirc-devel</Dependency>
|
||||
<Dependency>gconf-devel</Dependency>
|
||||
<!--<Dependency>lirc-devel</Dependency> our dep libtfdi need boost-->
|
||||
<!--Dependency>gconf-devel</Dependency>2-->
|
||||
<Dependency>avahi-devel</Dependency>
|
||||
<Dependency>speex-devel</Dependency>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
@@ -33,12 +33,14 @@
|
||||
<Dependency>libXtst-devel</Dependency>
|
||||
<Dependency>xcb-util-devel</Dependency>
|
||||
<Dependency>alsa-lib-devel</Dependency>
|
||||
<Dependency>bluez-libs-devel</Dependency>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>libasyncns-devel</Dependency>
|
||||
<Dependency>libatomic_ops-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>libasyncns-devel</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>libcap-devel</Dependency>
|
||||
<Dependency>json-c-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -46,9 +48,17 @@
|
||||
<Name>pulseaudio-libs</Name>
|
||||
<Summary>Libraries for PulseAudio clients</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>json-c</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libxcb</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
<!--<Dependency release="current">pulseaudio</Dependency>is wrong-->
|
||||
<Dependency>libtool-ltdl</Dependency>
|
||||
<Dependency>orc</Dependency>
|
||||
<Dependency>sbc</Dependency>
|
||||
<Dependency>lirc</Dependency>
|
||||
<!--Dependency>lirc</Dependency-->
|
||||
<Dependency>fftw3</Dependency>
|
||||
<Dependency>libSM</Dependency>
|
||||
<Dependency>speex</Dependency>
|
||||
@@ -58,6 +68,7 @@
|
||||
<Dependency>avahi-libs</Dependency>
|
||||
<Dependency>libasyncns</Dependency>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
<Dependency>bluez</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/pa*</Path>
|
||||
@@ -100,6 +111,10 @@
|
||||
<Package>
|
||||
<Name>pulseaudio</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
<Dependency>libtool-ltdl</Dependency>
|
||||
<Dependency>orc</Dependency>
|
||||
<Dependency>speex</Dependency>
|
||||
<Dependency>libtdb</Dependency>
|
||||
@@ -155,7 +170,7 @@
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<!--<Package>
|
||||
<Name>pulseaudio-gconf</Name>
|
||||
<Summary>GConf configuration backend for the PulseAudio sound server</Summary>
|
||||
<RuntimeDependencies>
|
||||
@@ -166,7 +181,7 @@
|
||||
<Path fileType="library">/usr/lib/pulse-2.1/modules/module-gconf.so</Path>
|
||||
<Path fileType="executable">/usr/libexec/pulse/gconf-helper</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
</Package>-->
|
||||
|
||||
<Package>
|
||||
<Name>pulseaudio-libs-32bit</Name>
|
||||
@@ -181,6 +196,7 @@
|
||||
<Dependency>libcap-32bit</Dependency>
|
||||
<Dependency>libsndfile-32bit</Dependency>
|
||||
<Dependency>libtool-ltdl-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</BuildDependencies>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">pulseaudio-libs</Dependency>
|
||||
@@ -188,6 +204,7 @@
|
||||
<Dependency>glib2-32bit</Dependency>
|
||||
<Dependency>libsndfile-32bit</Dependency>
|
||||
<Dependency>json-c-32bit</Dependency>
|
||||
<Dependency>glibc-32bit</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-static=no \
|
||||
--disable-lynx \
|
||||
--disable-static")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("LICENSE")
|
||||
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libasyncns</Name>
|
||||
<Homepage>http://0pointer.de/lennart/projects/libasyncns</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A C library for asynchronous name service queries</Summary>
|
||||
<Description>libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv.</Description>
|
||||
<Archive sha1sum="e82843056e98672ae82d46eae2c164cbf0b09ef9" type="targz">http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libasyncns</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libasyncns-devel</Name>
|
||||
<Summary>Development files for libasyncns</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libasyncns</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2014-01-29</Date>
|
||||
<Version>0.8</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>0.8</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Gökcen Eraslan</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libasyncns</Name>
|
||||
<Summary xml:lang="tr">Asenkron isim servisi sorguları için C kitaplığı</Summary>
|
||||
<Description xml:lang="tr">libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libasyncns-devel</Name>
|
||||
<Summary xml:lang="tr">libasyncns için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -10,6 +10,8 @@ from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
cmaketools.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libical</Name>
|
||||
<Homepage>https://github.com/libical/libical</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MPL-1.1</License>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>An open source reference implementation of the icalendar data type and serialization format</Summary>
|
||||
<Description>libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents.</Description>
|
||||
<Archive sha1sum="904b2c2b5c2b30f0a508f9d56eaf316dd42fc923" type="targz">https://github.com/libical/libical/releases/download/v1.0.1/libical-1.0.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libical</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/libical/zoneinfo</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libical-devel</Name>
|
||||
<Summary>Development files for libical</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libical</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-07-08</Date>
|
||||
<Version>1.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-06-01</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-10-27</Date>
|
||||
<Version>1.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>201-10-02</Date>
|
||||
<Version>0.48</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libical</Name>
|
||||
<Summary xml:lang="tr">icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi</Summary>
|
||||
<Description xml:lang="tr">libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libical-devel</Name>
|
||||
<Summary xml:lang="tr">libical için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,27 @@
|
||||
#!/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
|
||||
|
||||
shelltools.export("JOBS", get.makeJOBS().replace("-j", ""))
|
||||
|
||||
def setup():
|
||||
autotools.configure("\
|
||||
--builtin-libraries=replace \
|
||||
--bundled-libraries=NONE \
|
||||
--disable-rpath \
|
||||
")
|
||||
|
||||
def build():
|
||||
shelltools.system("make")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("docs/README")
|
||||
@@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libtdb</Name>
|
||||
<Homepage>http://tdb.samba.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3+</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Trivial database library</Summary>
|
||||
<Description>libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other.</Description>
|
||||
<Archive sha1sum="98c4f80d7a1427406f71d6d47290ce61eb9328df" type="targz">http://www.samba.org/ftp/tdb/tdb-1.2.13.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>docbook-xsl</Dependency>
|
||||
<Dependency>libbsd-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libtdb</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libtdb-devel</Name>
|
||||
<Summary>Development files for libtdb</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libtdb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2014-05-22</Date>
|
||||
<Version>1.2.13</Version>
|
||||
<Comment>rebuild.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-04-26</Date>
|
||||
<Version>1.2.13</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-01-09</Date>
|
||||
<Version>1.2.12</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2" type="security">
|
||||
<Date>2013-03-18</Date>
|
||||
<Version>1.2.11</Version>
|
||||
<Comment>V.Bump</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>1.2.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libtdb</Name>
|
||||
<Summary xml:lang="tr">TDB veritabanına erişim için gerekli kitaplıklar</Summary>
|
||||
<Description xml:lang="tr">libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libtdb-devel</Name>
|
||||
<Summary xml:lang="tr">libtdb için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user