File: checkinstall

package info (click to toggle)
opensaml 1.1a-2
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 2,360 kB
  • ctags: 1,771
  • sloc: cpp: 10,614; sh: 8,329; makefile: 199; ansic: 23
file content (9 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#!/bin/sh

expected_platform="sparc"
platform=`uname -p`
if [ ${platform} != ${expected_platform} ]; then
	echo "This package must be installed on ${expected_platform}"
	exit 1
fi
exit 0