[jalv] Initial import of SRPM

Brendan Jones bsjones at fedoraproject.org
Sat May 12 18:11:12 UTC 2012


commit ca29308b5f93e8ae607a94a57bfbd42153015fde
Author: Brendan Jones <brendan.jones.it at gmail.com>
Date:   Sat May 12 20:10:52 2012 +0200

    Initial import of SRPM

 .gitignore |    1 +
 jalv.spec  |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources    |    1 +
 3 files changed, 57 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..20fb1bc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/jalv-1.0.0.tar.bz2
diff --git a/jalv.spec b/jalv.spec
new file mode 100644
index 0000000..f436b81
--- /dev/null
+++ b/jalv.spec
@@ -0,0 +1,55 @@
+%global maj 0
+
+Name:       jalv
+Version:    1.0.0
+Release:    2%{?dist}
+Summary:    An LV2 Resource Description Framework Library
+
+Group:      System Environment/Libraries
+License:    MIT
+URL:        http://drobilla.net/software/jalv/
+Source0:    http://download.drobilla.net/%{name}-%{version}.tar.bz2
+
+BuildRequires:  python
+BuildRequires:  doxygen
+BuildRequires:  graphviz
+BuildRequires:  lilv-devel >= 0.5.0
+BuildRequires:  suil-devel >= 0.6.0
+BuildRequires:  jack-audio-connection-kit-devel
+
+%description
+%{name} is a simple but fully featured LV2 host for Jack. It runs LV2 plugins 
+and exposes their ports as Jack ports, essentially making any LV2 plugin 
+function as a Jack application. 
+
+%prep
+%setup -q 
+
+# we'll run ld config
+sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript
+
+%build
+export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}"
+./waf configure -v\
+ --prefix=%{_prefix} \
+ --libdir=%{_libdir} \
+ --mandir=%{_mandir} \
+ --datadir=%{_datadir} \
+ --configdir=%{_sysconfdir} \
+ --docs 
+./waf build -v %{?_smp_mflags}
+
+%install
+DESTDIR=%{buildroot} ./waf install
+
+%files
+%doc AUTHORS NEWS README COPYING
+%{_bindir}/%{name}*
+%{_mandir}/man1/*
+
+%changelog
+* Sun Apr 22 2012 Brendan Jones <brendan.jones.it at gmail.com> - 1.0.0-2
+- Add missing build requires
+
+* Fri Apr 20 2012 Brendan Jones <brendan.jones.it at gmail.com> - 1.0.0-1
+- Initial build
diff --git a/sources b/sources
index e69de29..1f5ccc0 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+f20f81dbb437f4e4ea10e00694f6cc4d  jalv-1.0.0.tar.bz2


More information about the scm-commits mailing list