From f53f93f1a8e186ca992d782889c4b981461bd969 Mon Sep 17 00:00:00 2001 From: alihanozturk Date: Wed, 2 Dec 2015 19:29:58 +0200 Subject: [PATCH] libwlocate:first release --- programming/library/libwlocate/actions.py | 23 ++++++++++ programming/library/libwlocate/pspec.xml | 53 +++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 programming/library/libwlocate/actions.py create mode 100644 programming/library/libwlocate/pspec.xml diff --git a/programming/library/libwlocate/actions.py b/programming/library/libwlocate/actions.py new file mode 100644 index 0000000000..09b10b993b --- /dev/null +++ b/programming/library/libwlocate/actions.py @@ -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/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import shelltools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +WorkDir="libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac/master" + +def build(): + autotools.make("-f Makelib") + autotools.make() + +def install(): + pisitools.insinto("/usr/lib", "libwlocate.so") + pisitools.insinto("/usr/include", "libwlocate.h") + pisitools.insinto("/usr/bin", "lwtrace") + + pisitools.dodoc("COPYING", "README", "CREDITS") \ No newline at end of file diff --git a/programming/library/libwlocate/pspec.xml b/programming/library/libwlocate/pspec.xml new file mode 100644 index 0000000000..0791275d96 --- /dev/null +++ b/programming/library/libwlocate/pspec.xml @@ -0,0 +1,53 @@ + + + libwlocate + http://sourceforge.net/projects/libwlocate/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + library + A shared library that can be used for location-based services + libwlocate is a shared library that can be used for location-based services. + + wireless-tools-devel + + http://sourceforge.net/code-snapshots/git/l/li/libwlocate/code.git/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.zip + + + + libwlocate + A shared library that can be used for location-based services + + wireless-tools + glibc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + libwlocate-devel + Development files for libwlocate + + libwlocate + + + /usr/include + + + + + + 2015-12-02 + 0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + \ No newline at end of file