~ubuntu-branches/ubuntu/warty/liquidwar/warty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#test -h /usr/share/doc/liquidwar && rm /usr/share/doc/liquidwar || /bin/true
# Whatever we had before, move all the cruft to the new directory and make
# space for the symlink

if [ "$1" = "configure" ]; then
   if [ ! -h /usr/share/doc/liquidwar -a \
      ! -h /usr/share/doc/liquidwar-data ] ; then
      mv /usr/share/doc/liquidwar/* /usr/share/doc/liquidwar-data/
      rm -rf /usr/share/doc/liquidwar
   fi
fi


#DEBHELPER#