#!/bin/bash #zarafa-webaccess-multiuser client - this is for the supported commercial version of zarafa #Use the debian 5 i386 package inside: https://download.zarafa.com/supported/final/6.40/6.40.12-29942/zcp-6.40.12-29942-debian-5.0-i386-supported.tar.gz #This contains: zarafa-webaccess-muc_6.40.12-29942_all.deb #Extract with: dpkg-deb -X zarafa-webaccess-muc_6.40.12-29942_all.deb tmp #Name of the Syn-3 package that we are going to create NAME=`basename $0|sed 's/.SlackBuild//'` VER=6.40.12 ARCH=noarch mkdir /tmp/pkg cp -r root/* /tmp/pkg || exit 1 find /tmp/pkg -name .svn -exec rm -r "{}" \; #make main package syn3_makepkg /tmp/pkg $NAME $VER $ARCH || exit 1