From 33d4464996e9d55d4ba89894bb41a9f1e8999e38 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Added an example specfile. --- example/mingw-example.spec | 53 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 example/mingw-example.spec diff --git a/example/mingw-example.spec b/example/mingw-example.spec new file mode 100644 index 0000000..b09941d --- /dev/null +++ b/example/mingw-example.spec @@ -0,0 +1,53 @@ +%include /usr/lib/rpm/mingw-defs + +Name: mingw-example +Version: 1.2.3 +Release: 1%{?dist} +Summary: + +License: LGPLv2+ +Group: Development/Libraries +URL: +Source0: +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildArch: noarch + +BuildRequires: mingw-filesystem >= 21 +BuildRequires: mingw-gcc +BuildRequires: mingw-binutils +# Any additional BuildRequires. + + +%description +# description + + +%prep +%setup -q + + +%build +%{_mingw_configure} +make + + +%install +rm -rf $RPM_BUILD_ROOT +make DESTDIR=$RPM_BUILD_ROOT install + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%files +%defattr(-,root,root) +%{_mingw_bindir}/foo.dll +%{_mingw_libdir}/foo.dll.a +# etc. + + +%changelog +* Wed Sep 10 2008 Richard W.M. Jones - 1.2.3-1 +- Initial RPM release. -- 1.8.3.1