wok rev 13410

Add: check+
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Oct 01 01:39:13 2012 +0200 (2012-10-01)
parents 1916b7d701ea
children 3957e60d6239
files check-dev/receipt check/receipt csync-dev/receipt csync/receipt log4c-dev/receipt log4c/receipt owncloud-client/receipt owncloud-client/stuff/applications/owncloud-client.desktop
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/check-dev/receipt	Mon Oct 01 01:39:13 2012 +0200
     1.3 @@ -0,0 +1,26 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="check-dev"
     1.7 +VERSION="0.9.8"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="Check development files"
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +WEB_SITE="http://check.sourceforge.net/"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WANTED="check"
    1.14 +
    1.15 +DEPENDS="check"
    1.16 +BUILD_DEPENDS=""
    1.17 +
    1.18 +
    1.19 +
    1.20 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.21 +genpkg_rules()
    1.22 +{
    1.23 +	mkdir -p $fs/usr/lib $fs/usr/share
    1.24 +	
    1.25 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.26 +	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 +	cp -a $install/usr/include $fs/usr
    1.28 +	cp -a $install/usr/share/aclocal $fs/usr/share
    1.29 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/check/receipt	Mon Oct 01 01:39:13 2012 +0200
     2.3 @@ -0,0 +1,26 @@
     2.4 +# SliTaz package receipt.
     2.5 +
     2.6 +PACKAGE="check"
     2.7 +VERSION="0.9.8"
     2.8 +CATEGORY="system-tools"
     2.9 +SHORT_DESC="A unit testing framework for C"
    2.10 +MAINTAINER="erjo@slitaz.org"
    2.11 +WEB_SITE="http://check.sourceforge.net/"
    2.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.13 +WGET_URL="$SF_MIRROR/$PACKAGE/$VERSION/$TARBALL"
    2.14 +
    2.15 +DEPENDS=""
    2.16 +BUILD_DEPENDS=""
    2.17 +
    2.18 +# Rules to configure and make the package.
    2.19 +compile_rules()
    2.20 +{
    2.21 +	./configure $CONFIGURE_ARGS && make && make install
    2.22 +}
    2.23 +
    2.24 +# Rules to gen a SliTaz package suitable for Tazpkg.
    2.25 +genpkg_rules()
    2.26 +{
    2.27 +	mkdir -p $fs/usr/lib
    2.28 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.29 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/csync-dev/receipt	Mon Oct 01 01:39:13 2012 +0200
     3.3 @@ -0,0 +1,21 @@
     3.4 +# SliTaz package receipt.
     3.5 +
     3.6 +PACKAGE="csync-dev"
     3.7 +VERSION="0.50.8"
     3.8 +CATEGORY="development"
     3.9 +SHORT_DESC="Csync development files."
    3.10 +MAINTAINER="erjo@slitaz.org"
    3.11 +WEB_SITE="http://www.csync.org/"
    3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +WANTED="csync"
    3.14 +
    3.15 +DEPENDS="csync"
    3.16 +BUILD_DEPENDS=""
    3.17 +
    3.18 +
    3.19 +# Rules to gen a SliTaz package suitable for Tazpkg.
    3.20 +genpkg_rules()
    3.21 +{
    3.22 +	mkdir -p $fs/usr
    3.23 +	cp -a $install/usr/include  $fs/usr
    3.24 +}
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/csync/receipt	Mon Oct 01 01:39:13 2012 +0200
     4.3 @@ -0,0 +1,36 @@
     4.4 +# SliTaz package receipt.
     4.5 +
     4.6 +PACKAGE="csync"
     4.7 +VERSION="0.50.8"
     4.8 +CATEGORY="network"
     4.9 +SHORT_DESC="File synchronizer"
    4.10 +MAINTAINER="erjo@slitaz.org"
    4.11 +WEB_SITE="http://www.csync.org/"
    4.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    4.13 +WGET_URL="http://download.owncloud.com/download/$TARBALL"
    4.14 +
    4.15 +DEPENDS="libsqlite neon"
    4.16 +BUILD_DEPENDS="check-dev cmake sqlite-dev iniparser-dev  \
    4.17 + expat-dev openssl-dev log4c-dev neon-dev samba-dev"
    4.18 +
    4.19 +# Rules to configure and make the package.
    4.20 +compile_rules()
    4.21 +{
    4.22 +	mkdir csync-build && cd csync-build
    4.23 +	cmake -DCMAKE_INSTALL_PREFIX=/usr \
    4.24 +		-DWITH_LOG4C=OFF \
    4.25 +		-DLOG_TO_CALLBACK=ON .. \
    4.26 +		&& make && make install
    4.27 +	
    4.28 +}
    4.29 +
    4.30 +# Rules to gen a SliTaz package suitable for Tazpkg.
    4.31 +genpkg_rules()
    4.32 +{
    4.33 +	mkdir -p $fs/usr/lib 
    4.34 +	
    4.35 +	cp -a $install/usr/etc $fs/
    4.36 +	cp -a $install/usr/bin $fs/usr
    4.37 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    4.38 +	cp -a $install/usr/lib/csync-0 $fs/usr/lib
    4.39 +}
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/log4c-dev/receipt	Mon Oct 01 01:39:13 2012 +0200
     5.3 @@ -0,0 +1,22 @@
     5.4 +# SliTaz package receipt.
     5.5 +
     5.6 +PACKAGE="log4c-dev"
     5.7 +VERSION="1.2.1"
     5.8 +CATEGORY="development"
     5.9 +SHORT_DESC="Log4c development files"
    5.10 +MAINTAINER="erjo@slitaz.org"
    5.11 +WEB_SITE="http://log4c.sourceforge.net"
    5.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    5.13 +WANTED="log4c"
    5.14 +
    5.15 +DEPENDS="log4c"
    5.16 +
    5.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    5.18 +genpkg_rules()
    5.19 +{
    5.20 +	mkdir -p $fs/usr/lib 
    5.21 +	cp -a $install/usr/bin $fs/usr
    5.22 +	cp -a $install/usr/lib/*.*a $fs/usr/lib
    5.23 +	cp -a $install/usr/include $fs/usr
    5.24 +	cp -a $install/usr/share $fs/usr
    5.25 +}
     6.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     6.2 +++ b/log4c/receipt	Mon Oct 01 01:39:13 2012 +0200
     6.3 @@ -0,0 +1,28 @@
     6.4 +# SliTaz package receipt.
     6.5 +
     6.6 +PACKAGE="log4c"
     6.7 +VERSION="1.2.1"
     6.8 +CATEGORY="system-tools"
     6.9 +SHORT_DESC="Logging for C Library"
    6.10 +MAINTAINER="erjo@slitaz.org"
    6.11 +WEB_SITE="http://log4c.sourceforge.net"
    6.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    6.13 +WGET_URL="http://prdownloads.sourceforge.net/log4c/$TARBALL"
    6.14 +
    6.15 +DEPENDS=""
    6.16 +BUILD_DEPENDS=""
    6.17 +
    6.18 +# Rules to configure and make the package.
    6.19 +compile_rules()
    6.20 +{
    6.21 +	./configure $CONFIGURE_ARGS \
    6.22 +		--sysconfdir=/etc && make && make install
    6.23 +}
    6.24 +
    6.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    6.26 +genpkg_rules()
    6.27 +{
    6.28 +	mkdir -p $fs/usr/lib $fs/etc
    6.29 +	cp -a $install/usr/lib/*.so* $fs/lib
    6.30 +	cp -a $install/etc/log4crc.sample $fs/etc/log4crc
    6.31 +}
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/owncloud-client/receipt	Mon Oct 01 01:39:13 2012 +0200
     7.3 @@ -0,0 +1,28 @@
     7.4 +# SliTaz package receipt.
     7.5 +
     7.6 +PACKAGE="owncloud-client"
     7.7 +VERSION="1.0.5"
     7.8 +CATEGORY="network"
     7.9 +SHORT_DESC="The ownCloud Client, based on Mirall"
    7.10 +MAINTAINER="erjo@slitaz.org"
    7.11 +WEB_SITE="http://owncloud.org/sync-clients/"
    7.12 +SOURCE="mirall"
    7.13 +TARBALL="$SOURCE-$VERSION.tar.bz2"
    7.14 +WGET_URL="http://download.owncloud.com/download/$TARBALL"
    7.15 +
    7.16 +DEPENDS="csync libQtTest libQtNetwork libQtCore libQtXml libQtGui"
    7.17 +BUILD_DEPENDS="csync-dev Qt4-dev cmake qmake"
    7.18 +# Rules to configure and make the package.
    7.19 +compile_rules()
    7.20 +{
    7.21 +		mkdir mirall-build && cd mirall-build
    7.22 +		cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
    7.23 +		&& make && make install
    7.24 +	
    7.25 +}
    7.26 +
    7.27 +# Rules to gen a SliTaz package suitable for Tazpkg.
    7.28 +genpkg_rules()
    7.29 +{
    7.30 +	cp -a $install/* $fs/
    7.31 +}
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/owncloud-client/stuff/applications/owncloud-client.desktop	Mon Oct 01 01:39:13 2012 +0200
     8.3 @@ -0,0 +1,14 @@
     8.4 +
     8.5 +[Desktop Entry]
     8.6 +Version=1.0
     8.7 +Exec=owncloud
     8.8 +Name=ownCloud desktop sync client 
     8.9 +Name[fr]=Client ownCloud 
    8.10 +GenericName=Folder Sync
    8.11 +GenericName[fr]=Synchronistionn de dossier
    8.12 +Icon=owncloud
    8.13 +Terminal=false
    8.14 +Type=Application
    8.15 +StartupNotify=true
    8.16 +Categories=Utility;
    8.17 +X-Desktop-File-Install-Version=0.15