| 1 | Name: vine-manual-build |
|---|
| 2 | Version: 0.9.3 |
|---|
| 3 | Release: 1%{?_dist_release} |
|---|
| 4 | License: Vine Linux General Public License 4.0 |
|---|
| 5 | Group: Applications/Documentation |
|---|
| 6 | Source0: %{name}-%{version}.tar.bz2 |
|---|
| 7 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 8 | BuildArch: noarch |
|---|
| 9 | |
|---|
| 10 | Vendor: Project Vine |
|---|
| 11 | Distribution: Vine Linux |
|---|
| 12 | Packager: yasumichi |
|---|
| 13 | |
|---|
| 14 | Summary: A wrapper of xsltproc to build manual of Vine Linux. |
|---|
| 15 | Summary(ja): Vine Linuxマニュアルをビルドするためのxsltprocラッパー |
|---|
| 16 | |
|---|
| 17 | # Dependency |
|---|
| 18 | Requires: vine-manual-base >= 0.3.0 |
|---|
| 19 | Requires: libxslt |
|---|
| 20 | Requires: gnome-doc-utils |
|---|
| 21 | |
|---|
| 22 | BuildRequires: vine-manual-base >= 0.3.0 |
|---|
| 23 | BuildRequires: gnome-doc-utils |
|---|
| 24 | |
|---|
| 25 | %description |
|---|
| 26 | A wrapper of xsltproc to build vine documentation. |
|---|
| 27 | |
|---|
| 28 | %description -l ja |
|---|
| 29 | Vineドキュメントをビルドするためのxsltprocラッパーです。 |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | # Prepare |
|---|
| 33 | %prep |
|---|
| 34 | %setup -q |
|---|
| 35 | |
|---|
| 36 | # Build |
|---|
| 37 | %build |
|---|
| 38 | %configure |
|---|
| 39 | %{__make} %{?_smp_mflags} |
|---|
| 40 | |
|---|
| 41 | # Install |
|---|
| 42 | %install |
|---|
| 43 | %{__rm} -rf ${RPM_BUILD_ROOT} |
|---|
| 44 | %{__make} install DESTDIR=${RPM_BUILD_ROOT} |
|---|
| 45 | |
|---|
| 46 | # Clean |
|---|
| 47 | %clean |
|---|
| 48 | %{__rm} -rf ${RPM_BUILD_ROOT} |
|---|
| 49 | |
|---|
| 50 | # File list |
|---|
| 51 | %files |
|---|
| 52 | %defattr(-,root,root) |
|---|
| 53 | %doc AUTHORS COPYING ChangeLog NEWS README |
|---|
| 54 | %{_bindir}/%{name} |
|---|
| 55 | %{_datadir}/sgml/docbook/vine-style-xsl/ |
|---|
| 56 | %{_datadir}/pkgconfig/vine-manual-build.pc |
|---|
| 57 | |
|---|
| 58 | # Change Log |
|---|
| 59 | %changelog |
|---|
| 60 | * Tue Aug 09 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.9.3-1 |
|---|
| 61 | - move page top from head to body. |
|---|
| 62 | - When -w is used, add footer after navbar. |
|---|
| 63 | |
|---|
| 64 | * Sat Jun 25 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.9.2-1 |
|---|
| 65 | - add options.(-c,-i,-w,--help,--version) |
|---|
| 66 | |
|---|
| 67 | * Sat Mar 05 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.9.1-1 |
|---|
| 68 | - use macro for Source0 |
|---|
| 69 | |
|---|
| 70 | * Mon Jun 07 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 0.9.0-1 |
|---|
| 71 | - written first. |
|---|
| 72 | |
|---|