source: projects/specs/trunk/j/jhbuild/jhbuild-vl.spec @ 9478

Revision 9478, 2.5 KB checked in by Takemikaduchi, 9 years ago (diff)

GNOME-3.16.0

Line 
1# Basic Information
2Name:           jhbuild
3Version:        3.15.92
4Release:        1%{?_dist_release}
5License:        GPLv2
6Group:          Applications/Development
7Source0:        http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.15/%{name}-%{version}.tar.xz
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
22BuildRequires:  itstool
23
24# Description
25%description
26JHBuild is a tool designed to ease building collections of source packages,
27called "modules". JHBuild uses "module set" files to describe the modules
28available to build. The "module set" files include dependency information
29that allows JHBuild to discover what modules need to be built and in what
30order.
31
32%description -l ja
33JHBuild は「モジュール(modules)」と呼ばれる、ソース パッケージのあつまりを、
34簡単にビルドできるように作られたツールです。JHBuild はビルドできるモジュール
35の記述に、「モジュール セット(module set)」 というファイルを使います。「モジ
36ュール セット」ファイルには、JHBuild があるモジュールをビルドするのに、何を
37必要としているかを見つけるための、依存関係の情報が含まれています。
38
39# Scripts
40%prep
41%setup -q
42
43%build
44%configure --enable-doc-installation=yes
45%{__make} %{?_smp_mflags}
46
47%install
48%{__rm} -rf ${RPM_BUILD_ROOT}
49%{__make} install DESTDIR=${RPM_BUILD_ROOT}
50
51%find_lang %{name} --with-gnome
52
53
54%clean
55%{__rm} -rf ${RPM_BUILD_ROOT}
56
57# Files
58%files -f %{name}.lang
59%defattr(-,root,root)
60%doc COPYING ChangeLog NEWS README
61%{_datadir}/applications/jhbuild.desktop
62%{_datadir}/jhbuild
63%{_bindir}/install-check
64%{_bindir}/jhbuild
65%{python_sitelib}/jhbuild
66
67# ChangeLog
68%changelog
69* Wed Apr 01 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.15.92-1
70- new upstream release
71
72* Sat May 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.12.0-1
73- new upstream release
74
75* Sat Nov 30 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.10.0-1
76- new upstream release
77
78* Mon Jul 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.0-1
79- new upstream release
80- add BuildRequires: itstool
81
82* Sat Apr 09 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.32.4-1
83- initial build for Vine Linux
Note: See TracBrowser for help on using the repository browser.