File: postinst

package info (click to toggle)
sylpheed-claws 0.7.4claws-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,916 kB
  • ctags: 4
  • sloc: makefile: 86; sh: 41
file content (11 lines) | stat: -rw-r--r-- 285 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ "$1" = "configure" ]; then
    update-alternatives --install \
	/usr/bin/sylpheed sylpheed /usr/bin/sylpheed-claws 20 \
	--slave /usr/share/man/man1/sylpheed.1.gz sylpheed.1.gz \
	/usr/share/man/man1/sylpheed-claws.1.gz > /dev/null 2>&1 \
	|| /bin/true
fi

#DEBHELPER#