wok-current rev 16321
Add qxmpp, kqoauth
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu Apr 10 03:44:48 2014 +0300 (2014-04-10) |
parents | 6821d5d3f1b9 |
children | 55ae2a832163 |
files | kqoauth-dev/receipt kqoauth/description.txt kqoauth/receipt qxmpp-dev/receipt qxmpp/description.txt qxmpp/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/kqoauth-dev/receipt Thu Apr 10 03:44:48 2014 +0300 1.3 @@ -0,0 +1,18 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="kqoauth-dev" 1.7 +VERSION="git" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="Development files for kqoauth" 1.10 +MAINTAINER="al.bobylev@gmail.com" 1.11 +LICENSE="LGPL2.1" 1.12 +WEB_SITE="https://github.com/kypeli/kQOAuth" 1.13 +WANTED="kqoauth" 1.14 +DEPENDS="kqoauth" 1.15 + 1.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.17 +genpkg_rules() 1.18 +{ 1.19 + cp -a $install/* $fs 1.20 + rm -f $fs/usr/lib/*.so* 1.21 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/kqoauth/description.txt Thu Apr 10 03:44:48 2014 +0300 2.3 @@ -0,0 +1,11 @@ 2.4 +kQOAuth is a library written in C++ for Qt that implements the OAuth 1.0 2.5 +authentication specification RFC 5849 (http://tools.ietf.org/html/rfc5849). 2.6 +Greetings go to Dominik Kapusta for writing the original OAuth library using 2.7 +Qt, QOAuth (http://blog.ayoy.net/2009/6/24/oauth). However, I wanted to improve 2.8 +on the QOAuth’s approach in some ways. kQOAuth main features: Easy integrated 2.9 +solution for retrieving user authentication and access token. No external 2.10 +dependency to QCA. Convenient signals that can be used for easy OAuth 2.11 +authorization process handling. Access to request objects that will wrap 2.12 +request signing and network access, but still gives possibility for detailed 2.13 +control of the authentication process for easier integration to existing 2.14 +application logic.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/kqoauth/receipt Thu Apr 10 03:44:48 2014 +0300 3.3 @@ -0,0 +1,27 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="kqoauth" 3.7 +VERSION="git" 3.8 +CATEGORY="development" 3.9 +SHORT_DESC="kQOAuth is a OAuth 1.0 library written for Qt in C++" 3.10 +MAINTAINER="al.bobylev@gmail.com" 3.11 +LICENSE="LGPL2.1" 3.12 +WEB_SITE="https://github.com/kypeli/kQOAuth" 3.13 +TARBALL="$PACKAGE-$VERSION.zip" 3.14 +WGET_URL="https://github.com/kypeli/kQOAuth/archive/master.zip" 3.15 + 3.16 +DEPENDS="libQtGui libQtNetwork libssl" 3.17 +BUILD_DEPENDS="qmake Qt4-dev openssl-dev wget" 3.18 + 3.19 +# Rules to configure and make the package. 3.20 +compile_rules() 3.21 +{ 3.22 + qmake && make && make INSTALL_ROOT=$install install 3.23 +} 3.24 + 3.25 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.26 +genpkg_rules() 3.27 +{ 3.28 + mkdir -p $fs/usr/lib 3.29 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.30 +}
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/qxmpp-dev/receipt Thu Apr 10 03:44:48 2014 +0300 4.3 @@ -0,0 +1,18 @@ 4.4 +# SliTaz package receipt. 4.5 + 4.6 +PACKAGE="qxmpp-dev" 4.7 +VERSION="git" 4.8 +CATEGORY="development" 4.9 +SHORT_DESC="Development files for qxmpp" 4.10 +MAINTAINER="al.bobylev@gmail.com" 4.11 +LICENSE="LGPL2.1" 4.12 +WEB_SITE="https://github.com/qxmpp-project/qxmpp/" 4.13 +WANTED="qxmpp" 4.14 +DEPENDS="qxmpp" 4.15 + 4.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 4.17 +genpkg_rules() 4.18 +{ 4.19 + cp -a $install/* $fs 4.20 + rm -f $fs/usr/lib/*.so* 4.21 +}
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/qxmpp/description.txt Thu Apr 10 03:44:48 2014 +0300 5.3 @@ -0,0 +1,16 @@ 5.4 +QXmpp is a cross-platform C++ XMPP client and server library. It is written 5.5 +in C++ and uses the Qt framework. 5.6 + 5.7 +QXmpp strives to be as easy to use as possible, the underlying TCP socket, 5.8 +the core XMPP RFCs (RFC3920 and RFC3921) and XMPP extensions have been 5.9 +encapsulated into classes and functions. QXmpp comes with full 5.10 +API documentation, automatic tests and numerous examples. 5.11 + 5.12 +QXmpp uses Qt extensively, and as such users need to a have working knowledge 5.13 +of C++ and Qt basics (Signals and Slots and Qt data types). 5.14 + 5.15 +Qt is the only third party library which is required to build QXmpp, but 5.16 +libraries such as speex and theora enable additional features. 5.17 + 5.18 +QXmpp is released under the terms of the GNU Lesser General Public License, 5.19 +version 2.1 or later.
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/qxmpp/receipt Thu Apr 10 03:44:48 2014 +0300 6.3 @@ -0,0 +1,31 @@ 6.4 +# SliTaz package receipt. 6.5 + 6.6 +PACKAGE="qxmpp" 6.7 +VERSION="git" 6.8 +CATEGORY="development" 6.9 +SHORT_DESC="Cross-platform C++ XMPP client and server library" 6.10 +MAINTAINER="al.bobylev@gmail.com" 6.11 +LICENSE="LGPL2.1" 6.12 +WEB_SITE="https://github.com/qxmpp-project/qxmpp/" 6.13 +TARBALL="$PACKAGE-$VERSION.zip" 6.14 +WGET_URL="https://github.com/qxmpp-project/qxmpp/archive/master.zip" 6.15 + 6.16 +DEPENDS="libQtNetwork libQtXml libtheora-enc libvpx speex" 6.17 +BUILD_DEPENDS="qmake Qt4-dev speex-dev libtheora-dev libogg-dev libvpx-dev \ 6.18 +doxygen wget" 6.19 + 6.20 +# Rules to configure and make the package. 6.21 +compile_rules() 6.22 +{ 6.23 + qmake PREFIX=/usr QXMPP_USE_SPEEX=1 QXMPP_USE_THEORA=1 QXMPP_USE_VPX=1 && 6.24 + make && 6.25 + mkdir -p $src/doc/html && 6.26 + make INSTALL_ROOT=$install install 6.27 +} 6.28 + 6.29 +# Rules to gen a SliTaz package suitable for Tazpkg. 6.30 +genpkg_rules() 6.31 +{ 6.32 + mkdir -p $fs/usr/lib 6.33 + cp -a $install/usr/lib/*.so* $fs/usr/lib 6.34 +}