[lv2-abGate] Initial import

Brendan Jones bsjones at fedoraproject.org
Tue Jan 10 20:13:06 UTC 2012


commit c604571f69a925ebb4dbc05556963c41330a19e5
Author: Brendan Jones <brendan.jones.it at gmail.com>
Date:   Tue Jan 10 21:12:37 2012 +0100

    Initial import

 .gitignore      |    1 +
 lv2-abGate.spec |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources         |    1 +
 3 files changed, 54 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..8268f81 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/abGate-1.1.3.tar.gz
diff --git a/lv2-abGate.spec b/lv2-abGate.spec
new file mode 100644
index 0000000..c220196
--- /dev/null
+++ b/lv2-abGate.spec
@@ -0,0 +1,52 @@
+%global pname abGate
+Name:           lv2-abGate
+Version:        1.1.3
+Release:        2%{?dist}
+Summary:        An LV2 Noice Gate
+
+Group:          Applications/Multimedia
+License:        GPLv3+
+URL:            http://abGate.sourceforge.net
+Source0:        http://downloads.sourceforge.net/project/abgate/abGate-source/abGate-1.1.3.tar.gz
+BuildRequires:  lv2core-devel
+BuildRequires:  gtkmm24-devel
+Requires:       lv2core
+
+%description
+A Noise Gate plugin 
+
+%prep
+%setup -q -n %{pname}-%{version}
+sed -i -e 's|-O3|%{optflags}|' Makefile
+%ifarch x86_64
+   sed -i -e 's|\/lib|\/lib64|' Makefile plugin_configuration.h
+%endif
+
+
+# Fix encoding issues
+for file in README license.txt; do
+   sed 's|\r||' $file > $file.tmp
+   iconv -f ISO-8859-1 -t UTF8 $file.tmp > $file.tmp2
+   touch -r $file $file.tmp2
+   mv -f $file.tmp2 $file
+done
+
+%build
+make  
+
+%install
+make install DESTDIR=%{buildroot}  
+
+%files
+%doc license.txt README
+%{_libdir}/lv2/%{pname}.lv2
+%{_libdir}/lv2/%{pname}.lv2/*
+
+
+%changelog
+* Fri Jan 6 2012 Brendan Jones <brendan.jones.it at gmail.com> 1.1.3-2
+- Removed lv2config
+
+* Mon Oct 31 2011 Brendan Jones <brendan.jones.it at gmail.com> 1.1.3-1
+- Initial build
+
diff --git a/sources b/sources
index e69de29..8286584 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+27fcf7faf46b83396f438b2b9f323b08  abGate-1.1.3.tar.gz


More information about the scm-commits mailing list