~ubuntu-branches/ubuntu/vivid/libspectre/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/prune-ghostscript

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Rosewarne
  • Date: 2008-01-06 21:58:55 UTC
  • Revision ID: james.westby@ubuntu.com-20080106215855-lskg3x1no1os9v8l
Tags: 0.2.0.ds-1
* New upstream release.
* Removed ghostscript headers.
  - Patched build system to omit libspectre/ghostscript.

 +++ Changes by Ana Beatriz Guerrero Lopez:

 * Add prune-ghostscript script to remove ghostscript stuff.
 * Slight tweaking of debian/copyright.
 * Add Homepage field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
# Removes non-free files from the source tree. Must be done before
 
4
# creating the orig.tar.gz.
 
5
 
 
6
TOPLEVEL="$1"
 
7
 
 
8
if [ "$TOPLEVEL" = "" ]; then
 
9
        echo "Please provide the toplevel directory as the argument."
 
10
        exit 1
 
11
else
 
12
        rm -f $TOPLEVEL/libspectre/ghostscript/
 
13
fi
 
14
 
 
15
exit 0