@@ -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 get
|
||||
|
||||
def setup():
|
||||
pisitools.flags.add("-fomit-frame-pointer", "-ffast-math")
|
||||
|
||||
autotools.configure("--disable-static \
|
||||
--enable-shared \
|
||||
--enable-demos \
|
||||
--with-trimesh=opcode \
|
||||
--enable-new-trimesh \
|
||||
--with-drawstuff=X11 \
|
||||
--enable-libccd \
|
||||
--enable-double-precision \
|
||||
--disable-dependency-tracking")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("CHANGELOG.txt", "README.txt")
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ode</Name>
|
||||
<Homepage>http://www.ode.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>High performance library for simulating rigid body dynamics</Summary>
|
||||
<Description>ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API.</Description>
|
||||
<Archive sha1sum="0279d58cc390ff5cc048f2baf96cff23887f3838" type="tarbz2">mirrors://sourceforge/opende/ode-0.13.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ode</Name>
|
||||
<RuntimeDependencies>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>ode-devel</Name>
|
||||
<Summary>Development files for ode</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">ode</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/ode-config</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-10-26</Date>
|
||||
<Version>0.13</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-09</Date>
|
||||
<Version>0.12</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-18</Date>
|
||||
<Version>0.12</Version>
|
||||
<Comment>Enable double precision</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-12-08</Date>
|
||||
<Version>0.12</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ode</Name>
|
||||
<Summary xml:lang="tr">Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık</Summary>
|
||||
<Summary xml:lang="pl">ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej</Summary>
|
||||
<Description xml:lang="tr">ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar.</Description>
|
||||
<Description xml:lang="fr">SDK (kit de développement) du moteur Open Dynamics.</Description>
|
||||
<Description xml:lang="pl">Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ode-devel</Name>
|
||||
<Summary xml:lang="tr">ode için geliştirme dosyaları</Summary>
|
||||
<Summary xml:lang="pl">Pliki nagłówkowe ode</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/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("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "README*")
|
||||
@@ -0,0 +1,69 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmms</Name>
|
||||
<Homepage>http://sourceforge.net/projects/libmms</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A common library for accessing MMS media streaming protocol</Summary>
|
||||
<Description>libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol.</Description>
|
||||
<Archive sha1sum="b03ef84a9eedc68fdf2866265b667b75e1a33bee" type="targz">mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmms</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libmms-devel</Name>
|
||||
<Summary>Development files for libmms</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libmms</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2015-10-23</Date>
|
||||
<Version>0.6.4</Version>
|
||||
<Comment>Version Bump.</Comment>
|
||||
<Name>Stefan Gronewold (groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-05-26</Date>
|
||||
<Version>0.6.2</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-31</Date>
|
||||
<Version>0.6.2</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2011-01-24</Date>
|
||||
<Version>0.6.2</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>libmms</Name>
|
||||
<Summary xml:lang="tr">MMS protokolüne erişim sağlayan bir kütüphane</Summary>
|
||||
<Description xml:lang="tr">libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmms-devel</Name>
|
||||
<Summary xml:lang="tr">libmms için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user