This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move here-doc sources to separate files.
With the rest of the spec cleaned up, these clutters too much.
- Loading branch information
Alec Leamas
committed
May 24, 2013
1 parent
f6fea01
commit e622870
Showing
4 changed files
with
34 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
/usr/lib/rpm/find-requires | \ | ||
sed -e 's/lib\(nss3\|nssutil3\|smime3\|plc4\|nspr4\)\.so\.[01]d/lib\1.so/ | ||
/lib\(crypto\|ssl\)\.so/d' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
This package was built by the openSUSE Spotify installer; see | ||
|
||
https://github.com/aspiers/opensuse-spotify-installer | ||
|
||
for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
path=$0 | ||
[[ "$path" == /* ]] || path=$PWD/$path | ||
cd ${path%/*} | ||
|
||
spotify=/usr/bin/spotify | ||
|
||
if [ -n "$SPOTIFY_CLEAN_CACHE" ]; then | ||
echo | ||
echo -n "Cleaning spotify cache ... " | ||
rm -rf ~/.cache/spotify | ||
echo "done." | ||
fi | ||
|
||
$spotify "$@" |