#!/bin/bash #WE GEBRUIKEN NOG EEN OUDE JAR VOOR VERSIE 7 #dit omdat we nog met postgres 7 werken. #######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//'` #Version of the sourcefiles VER=74.216 #Architecture that the created binaries run on. #Use noarch for scripts. ARCH=noarch mkdir -p /tmp/pkg/usr/lib/java/lib cp pg74.216.jdbc3.jar /tmp/pkg/usr/lib/java/lib/postgresql.jar || exit 1 #make main package syn3_makepkg /tmp/pkg $NAME $VER $ARCH || exit 1