#!/bin/bash #######Essential package info. #Change these if autodetection fails. #Name of the Syn-3 package that we are going to create NAME=`basename $0|sed 's/.SlackBuild//'` VER=8 ARCH=noarch mkdir /tmp/pkg cp -r root/* /tmp/pkg || exit 1 #make main package syn3_makepkg /tmp/pkg $NAME $VER $ARCH || exit 1