moved into main repo for pisi 2.0
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
#!/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 libtools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
# Use system libtool instead of bundled one
|
||||
shelltools.unlinkDir("libltdl")
|
||||
libtools.libtoolize("-c -f --ltdl")
|
||||
autotools.autoreconf("-fi")
|
||||
|
||||
autotools.configure("--sysconfdir=/etc/unixODBC \
|
||||
--disable-dependency-tracking \
|
||||
--disable-gui \
|
||||
--enable-threads \
|
||||
--enable-drivers \
|
||||
--enable-driver-conf \
|
||||
--disable-stats ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
pisitools.dohtml("doc/*")
|
||||
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>unixODBC</Name>
|
||||
<Homepage>http://www.unixodbc.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>ODBC Interface for Linux</Summary>
|
||||
<Description>The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms.</Description>
|
||||
<Archive sha1sum="f84520fd58143625b614fde551435178a558ee2e" type="targz">http://www.unixodbc.org/unixODBC-2.3.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>unixODBC</Name>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<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/unixODBC/AUTHORS</Path>
|
||||
<Path fileType="doc">/usr/share/doc/unixODBC/README</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>unixODBC-devel</Name>
|
||||
<Summary>Development files for unixODBC</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">unixODBC</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/odbc_config</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>unixODBC-docs</Name>
|
||||
<IsA>data:doc</IsA>
|
||||
<Summary>Documentation for unixODBC</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/unixODBC</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2014-05-19</Date>
|
||||
<Version>2.3.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-04</Date>
|
||||
<Version>2.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>unixodbc</Name>
|
||||
<Summary xml:lang="tr">Linux için ODBC arayüzü</Summary>
|
||||
<Description xml:lang="tr">unixODBC Projesinin amacı, unixODBC'yi geliştirip ilerleterek MS Windows harici platformlarda ODBC için kesin bir standart haline getirmektir.</Description>
|
||||
<Description xml:lang="fr">Les objectifs du projet unixODBC sont de développer et promouvoir unixODBC pour en faire le standard définitif pour ODBC sur les plateformes non MS Windows.</Description>
|
||||
<Description xml:lang="es">El proyecto unixODBC apunta a desarollar y promocio.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>unixODBC-devel</Name>
|
||||
<Summary xml:lang="tr">unixODBC için geliştirme dosyaları.</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>unixODBC-docs</Name>
|
||||
<Summary xml:lang="tr">unixODBC için belgelendirme dosyaları.</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user