File: print-libs

package info (click to toggle)
xsane 0.999-13
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 22,636 kB
  • sloc: ansic: 46,243; makefile: 723; sh: 383; sed: 50
file content (18 lines) | stat: -rwxr-xr-x 477 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
echo "TEST FOR SANE:"
find / -name "sane.h" 2>/dev/null
find / -name "libsane-dll*" 2>/dev/null
echo ""
echo "TEST FOR GTK:"
find / -name "gtk-config" 2>/dev/null
find / -name "gtk.h" 2>/dev/null
find / -name "libgtk*" 2>/dev/null
echo ""
echo "TEST FOR GDK:"
find / -name "gdk.h" 2>/dev/null
find / -name "libgdk*" 2>/dev/null
echo ""
echo "TEST FOR GIMP:"
find / -name "gimp-config" 2>/dev/null
find / -name "gimp.h" 2>/dev/null
find / -name "libgimp*" 2>/dev/null