source: projects/specs/tags/6_0_REL/j/jhbuild/jhbuild-vl.spec @ 3499

Revision 3499, 2.2 KB checked in by yasumichi, 13 years ago (diff)

jhbuild の SPEC ファイル登録

Line 
1# Basic Information
2Name:           jhbuild
3Version:        2.32.4
4Release:        1%{?_dist_release}
5License:        GPLv2
6Group:          Applications/Development
7Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/2.32/%{name}-%{version}.tar.bz2
8BuildRoot:      %{_tmppath}/%{name}-%{version}-root
9
10Vendor:         Project Vine
11Distribution:   Vine Linux
12Packager:       yasumichi
13
14Summary:        JHBuild is a tool designed to ease building collections of source packages, called "modules".
15Summary(ja):    JHBuild はモジュールと呼ばれるソースパッケージの集合を簡単にビルドするために設計されたツールです
16
17# Dependency
18Requires:       python
19BuildRequires:  python
20BuildRequires:  docbook-style-xsl
21BuildRequires:  gnome-doc-utils
22
23# Description
24%description
25JHBuild is a tool designed to ease building collections of source packages,
26called "modules". JHBuild uses "module set" files to describe the modules
27available to build. The "module set" files include dependency information
28that allows JHBuild to discover what modules need to be built and in what
29order.
30
31%description -l ja
32JHBuild は「モジュール(modules)」と呼ばれる、ソース パッケージのあつまりを、
33簡単にビルドできるように作られたツールです。JHBuild はビルドできるモジュール
34の記述に、「モジュール セット(module set)」 というファイルを使います。「モジ
35ュール セット」ファイルには、JHBuild があるモジュールをビルドするのに、何を
36必要としているかを見つけるための、依存関係の情報が含まれています。
37
38# Scripts
39%prep
40%setup -q
41
42%build
43%configure --enable-doc-installation=yes
44%{__make} %{?_smp_mflags}
45
46%install
47%{__rm} -rf ${RPM_BUILD_ROOT}
48%{__make} install DESTDIR=${RPM_BUILD_ROOT}
49
50%find_lang %{name}
51
52
53%clean
54%{__rm} -rf ${RPM_BUILD_ROOT}
55
56# Files
57%files -f %{name}.lang
58%defattr(-,root,root)
59%doc COPYING ChangeLog NEWS README
60%{_datadir}/applications/jhbuild.desktop
61%{_datadir}/gnome/help/jhbuild
62%{_datadir}/jhbuild
63%{_datadir}/omf/jhbuild
64%{_bindir}/install-check
65%{_bindir}/jhbuild
66%{python_sitelib}/jhbuild
67
68# ChangeLog
69%changelog
70* Sat Apr 09 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.32.4-1
71- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.