head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2010.06.04.15.14.47;	author gvermeul;	state Exp;
branches;
next	;


desc
@@


1.1
log
@A first stab at build-pdfedit.
@
text
@#!/bin/bash

PKG=pdfedit-0.4.5

pushd ../SOURCES
if [ ! -f $PKG.tar.bz2 ]; then
    wget $SF/pdfedit/$PKG.tar.bz2
fi
popd

pushd ../BUILD
rm -rf $PKG
tar xfj ../SOURCES/$PKG.tar.bz2
pushd $PKG
./configure --prefix=$HOME/usr
make
make install
popd # $PKG
popd # ../BUILD
@
