Subversion Repositories Scribus

Compare Revisions

No changes between revisions

Ignore whitespace Rev 2326 → Rev 2327

/branches/start/sctools/getdeps
0,0 → 1,19
#!/bin/bash
#
# Search a Scribus install for library dependencies and
# report a sorted list of all dependencies. Takes
# path to $PREFIX as first argument.
#
 
set -e -u
 
if (( $# != 1)); then
echo "Usage: $0 /path/to/scribus/prefix"
exit 1
fi
 
ldd $(find $1 -type f -name scribus -o -type f -name \*.so.\*) | \
egrep -v '(:|gate)' | \
sort | \
sed 's/ (.*)//g' | \
uniq
Property changes:
Added: svn:eol-style
+native
\ No newline at end of property
Added: svn:executable
+*
\ No newline at end of property
Added: svn:keywords
+Author Date Id Revision
\ No newline at end of property