~ubuntu-branches/ubuntu/trusty/mono-addins/trusty-proposed

« back to all changes in this revision

Viewing changes to mono-addins.spec.in

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-04-25 11:11:33 UTC
  • mfrom: (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110425111133-t05u5p7o5fxx70fu
Tags: 0.6-2
Upload to Unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%define _libdir %{_prefix}/lib
 
2
 
 
3
Name:           mono-addins
 
4
Version:        @VERSION@
 
5
Release:        0
 
6
License:        X11/MIT
 
7
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
8
BuildArch:      noarch
 
9
Url:            http://www.mono-project.com
 
10
Source0:        http://ftp.novell.com/pub/mono/sources/%{name}/%{name}-%{version}.tar.bz2
 
11
BuildRequires:  gtk-sharp2
 
12
BuildRequires:  mono-devel
 
13
BuildRequires:  pkg-config
 
14
Summary:        Mono Addins Framework
 
15
Group:          Development/Languages/Mono
 
16
 
 
17
%description
 
18
Mono.Addins is a generic framework for creating extensible
 
19
applications, and for creating libraries which extend those
 
20
applications.
 
21
 
 
22
%files
 
23
%defattr(-, root, root)
 
24
%{_bindir}/mautil
 
25
%{_datadir}/pkgconfig/*.pc
 
26
%{_libdir}/mono/gac/*Mono.Addins*
 
27
%{_libdir}/mono/mono-addins
 
28
%{_libdir}/mono/xbuild/Mono.Addins.targets
 
29
%{_mandir}/man1/mautil.1%ext_man
 
30
 
 
31
%prep
 
32
%setup -q
 
33
 
 
34
%build
 
35
%configure
 
36
make
 
37
 
 
38
%install
 
39
make install DESTDIR=%{buildroot}
 
40
mkdir -p %{buildroot}%{_datadir}/pkgconfig
 
41
mv %{buildroot}%{_libdir}/pkgconfig/*.pc %{buildroot}%{_datadir}/pkgconfig
 
42
 
 
43
%clean
 
44
rm -rf %{buildroot}
 
45
 
 
46
%changelog