~ubuntu-branches/ubuntu/karmic/pkgsel/karmic

1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

# Install laptop-detect on architectures known to have laptops
case "$(archdetect)" in
    i386/*|amd64/*|powerpc/*)
	apt-install laptop-detect || true
	;;
esac