From ee23487fd20e9c100d9b4daa436898245e94fe6f Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Thu, 13 Nov 2008 12:48:38 -0800 Subject: [PATCH] Imitial skel of rpm spec --- pkg/baulk.spec | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 pkg/baulk.spec diff --git a/pkg/baulk.spec b/pkg/baulk.spec new file mode 100644 index 0000000..6d86010 --- /dev/null +++ b/pkg/baulk.spec @@ -0,0 +1,47 @@ +%define SRCDIR baulk-0.1 + +Name: baulk +Version: 0.1 +Release: 1%{?dist} +Summary: Baulk is a cross-platform native application tiling management tool written in Qt4. + +Group: dev +License: GPL v2 +URL: http://baulk.sf.net +Source: baulk-0.1.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: cmake >= 2.6, doxygen, graphviz +Requires: qt >= 4.4 + +%description +Baulk is a cross-platform native application tiling management tool written in Qt4. An emphasis is made on making all major components a separate dynamic library, for modularity. + +%prep +%setup -q + +%build +cd src +cmake -DCMAKE_INSTALL_PREFIX=/usr . +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +cd src +make install DESTDIR=$RPM_BUILD_ROOT + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root,-) +%doc + + + +%changelog + + -- 2.11.4.GIT