forked from pool/MozillaFirefox
9af6a75ee0
OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=204
10 lines
275 B
Bash
10 lines
275 B
Bash
#!/bin/sh
|
|
# Finds requirements provided outside of the current file set
|
|
|
|
filelist=$( sed "s/[]['\"*?{}]/\\\\\&/g" )
|
|
provides=$( echo "$filelist" | /usr/lib/rpm/find-provides )
|
|
echo "$filelist" \
|
|
| /usr/lib/rpm/find-requires \
|
|
| grep -F -v "$provides" \
|
|
| sort -u
|