You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.8 KiB
74 lines
1.8 KiB
16 years ago
|
Name: ghc-rpm-macros
|
||
|
Version: 0.1
|
||
|
Release: 6%{?dist}
|
||
|
Summary: Macros for building packages for GHC
|
||
|
|
||
|
Group: Development/Libraries
|
||
|
License: GPLv3
|
||
|
URL: https://fedoraproject.org/wiki/Haskell_SIG
|
||
|
|
||
|
# This is a Fedora maintained package which is specific to
|
||
|
# our distribution. Thus the source is only available from
|
||
|
# within this srpm.
|
||
|
Source0: ghc-rpm-macros.ghc
|
||
|
Source1: COPYING
|
||
|
Source2: AUTHORS
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||
|
|
||
|
BuildArch: noarch
|
||
|
|
||
|
%description
|
||
|
A set of macros for building GHC packages following the Haskell Guidelines
|
||
|
of the Haskell SIG. This package probably shouldn't be installed on its own
|
||
|
as GHC is needed in order to make use of these macros.
|
||
|
|
||
|
%prep
|
||
|
%setup -c -T
|
||
|
cp %{SOURCE1} %{SOURCE2} .
|
||
|
|
||
|
|
||
|
%build
|
||
|
echo no build stage needed
|
||
|
|
||
|
|
||
|
%install
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
mkdir -p ${RPM_BUILD_ROOT}/%{_sysconfdir}/rpm
|
||
|
cp -p %{SOURCE0} ${RPM_BUILD_ROOT}/%{_sysconfdir}/rpm/macros.ghc
|
||
|
|
||
|
|
||
|
%clean
|
||
|
rm -rf $RPM_BUILD_ROOT
|
||
|
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root,-)
|
||
|
%doc COPYING AUTHORS
|
||
|
%{_sysconfdir}/rpm/macros.ghc
|
||
|
|
||
|
|
||
|
|
||
|
%changelog
|
||
|
* Sat May 9 2009 Yaakov M. Nemoy <ynemoy@fedoraproject.org> - 0.1-6
|
||
|
- removes archs and replaces with noarch
|
||
|
- bumps to avoid conflicts with jens
|
||
|
|
||
|
* Fri May 8 2009 Jens Petersen <petersen@redhat.com> - 0.1-5
|
||
|
- make it arch specific to fedora ghc archs
|
||
|
- setup a build dir so it can build from the current working dir
|
||
|
|
||
|
* Wed May 6 2009 Yaakov M. Nemoy <ynemoy@fedoraproject.org> - 0.1-4
|
||
|
- renamed license file
|
||
|
- removed some extraneous comments needed only at review time
|
||
|
|
||
|
* Wed May 6 2009 Yaakov M. Nemoy <ynemoy@fedoraproject.org> - 0.1-3
|
||
|
- updated license to GPLv3
|
||
|
- added AUTHORS file
|
||
|
|
||
|
* Tue May 5 2009 Yaakov M. Nemoy <ghc@hexago.nl> - 0.1-2
|
||
|
- moved copying license from %%build to %%prep
|
||
|
|
||
|
* Mon May 4 2009 Yaakov M. Nemoy <ghc@hexago.nl> - 0.1-1
|
||
|
- creation of package
|
||
|
|