[mp3fs] Initial import of SRPM

Stuart D. Gathman sdgathman at rpmfusion.org
Wed Nov 9 19:53:22 CET 2016


commit 614889232ad31a083a4448373e5f1f468e86a632
Author: Stuart D. Gathman <stuart at gathman.org>
Date:   Wed Nov 9 13:52:12 2016 -0500

    Initial import of SRPM

 .gitignore |  1 +
 mp3fs.spec | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources    |  1 +
 3 files changed, 77 insertions(+)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8995948 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/mp3fs-0.91.tar.gz
diff --git a/mp3fs.spec b/mp3fs.spec
new file mode 100644
index 0000000..dbb86de
--- /dev/null
+++ b/mp3fs.spec
@@ -0,0 +1,75 @@
+# Makefile manages to ignore hardened_build
+#global _hardened_build 1
+
+Summary: FUSE filesystem to transcode FLAC to MP3 on the fly
+Name: mp3fs
+Version: 0.91
+Release: 3%{dist}
+License: GPLv3+ and GFDL
+Group: Applications/Multimedia
+Source0: https://github.com/khenriks/mp3fs/releases/download/v%{version}/mp3fs-%{version}.tar.gz
+#Patch0: mp3fs.patch
+URL: http://khenriks.github.com/mp3fs/
+#Provides: mp3encoder
+# While mp3fs does not strictly require the fuse cli (which does not provide
+# the fuse libraries), mp3fs is fairly useless without it.
+Requires: fuse
+BuildRequires: fuse-devel lame-devel flac-devel libid3tag-devel gcc-c++
+
+%description
+MP3FS is A read-only FUSE file-system which trans-codes audio formats (currently
+FLAC) to MP3 on the fly when opened and read. This was written to enable me to
+use my FLAC collection with software and/or hardware which only understands
+MP3. e.g. "GMediaServer" to a Netgear MP101 mp3 player.
+
+It is also a novel alternative to traditional mp3 encoder applications. Just
+use your favorite file browser to select the files you want encoded and copy
+them somewhere!
+
+%prep
+%setup -q 
+#patch0 -p1 -b .sdg
+
+%build
+%configure
+%{make_build} LDFLAGS="$RPM_LD_FLAGS -lm" V=1
+
+%install
+%make_install
+
+%files
+%{!?_licensedir:%global license %%doc}
+%license COPYING COPYING.DOC
+%doc NEWS ChangeLog README.md INSTALL.md
+%{_bindir}/%{name}
+%{_mandir}/man1/*
+
+%changelog
+* Wed Oct 26 2016 Stuart Gathman <stuart at gathman.org> 0.91-3
+- Remove space from Summary:
+- Include $RPM_LD_FLAGS in LDFLAGS
+- Removed mp3encoder provides, not useful apparently
+
+* Tue Oct 18 2016 Stuart Gathman <stuart at gathman.org> 0.91-2
+- Clean up to resubmit to rpmfusion.
+
+* Sat Jan 24 2015 Stuart Gathman <stuart at gathman.org> 0.91-1
+- Update to 0.91 on Fedora 19
+
+* Wed Oct 10 2012 Stuart Gathman <stuart at gathman.org> 0.32-1
+- Update to 0.32 on Fedora 16
+
+* Tue Jun 29 2010 Stuart Gathman <stuart at gathman.org> 0.20-1
+- Update to 0.20 on Fedora 12
+
+* Fri Oct 19 2007 Stuart Gathman <stuart at gathman.org> 0.13-1
+- Update to 0.13 on Centos5
+
+* Fri Oct 19 2007 Stuart Gathman <stuart at gathman.org> 0.11-1
+- Update to 0.11 on Centos5
+
+* Wed Nov 22 2006 Stuart Gathman <stuart at gathman.org> 0.03-2
+- Rebuild with fuse-2.6
+
+* Wed Nov  1 2006 Stuart Gathman <stuart at gathman.org> 0.03-1
+- RPM 
diff --git a/sources b/sources
index e69de29..47513c9 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+8b1e7543114c2bcc5b8eb9562e15c909  mp3fs-0.91.tar.gz


More information about the rpmfusion-commits mailing list