-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c35d06a
commit 641bbbc
Showing
2 changed files
with
35 additions
and
6 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,23 @@ | ||
Cover Grabber | ||
============= | ||
|
||
|
||
Simple Utility to recurisvely traverse directory of MP3s and download album cover art | ||
|
||
--------------- | ||
|
||
## Install | ||
|
||
$ python setup.py install | ||
|
||
## Howto Use | ||
|
||
$ covergrabber <Media directory> [options] | ||
|
||
For example: | ||
|
||
$ covergrabber "/home/jvaughn/Music" | ||
|
||
------ | ||
|
||
(c) 2011 - Jayson Vaughn ([email protected]) |
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 |
---|---|---|
@@ -1,24 +1,25 @@ | ||
%define name cover_grabber | ||
%define version 0.0.1 | ||
%define unmangled_version 0.0.1 | ||
%define version 0.0.2 | ||
%define unmangled_version 0.0.2 | ||
%define release 1 | ||
|
||
Summary: Recursively traverse directory of MP3s and download album cover art from LastFM | ||
Summary: Recursively traverse a directory of mp3s downloading album cover art from LastFM | ||
Name: %{name} | ||
Version: %{version} | ||
Release: %{release} | ||
Source0: %{name}-%{unmangled_version}.tar.gz | ||
Source0: http://69.164.204.114/%{name}-%{unmangled_version}.tar.gz | ||
License: GPL | ||
Group: Application/Multimedia | ||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot | ||
Prefix: %{_prefix} | ||
BuildArch: noarch | ||
Requires: python-mutagen | ||
Vendor: Jayson Vaughn <[email protected]> | ||
Url: http://github.com/thedonvaughn/cover_grabber | ||
Packager: Jayson Vaughn <[email protected]> | ||
URL: http://github.com/thedonvaughn/cover_grabber | ||
|
||
%description | ||
Cover Grabber will recursively traverse a directory of mp3s and download album cover art from LastFM. | ||
Cover Grabber will recursively traverse a directory of mp3s and download album cover art from LastFM for all sub-directories. | ||
|
||
%prep | ||
%setup -n %{name}-%{unmangled_version} | ||
|
@@ -34,3 +35,8 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
%files -f INSTALLED_FILES | ||
%defattr(-,root,root) | ||
%doc README.md README COPYING ChangeLog | ||
|
||
%changelog | ||
* Wed Dec 7 2011 Jayson Vaughn <vaughn.jayson at, gmail.com> 0.0.2-1 | ||
- Initial RPM build |