12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- Summary: A CD-ROM image access library
- Summary(ja): CD-ROM イメージにアクセスするためのライブラリ
- Name: libmirage
- Version: 1.2.0
- Release: 1%{?_dist_release}
- License: GPLv2+
- Group: System Environment/Libraries
- URL: http://cdemu.sourceforge.net
- Source: http://downloads.sourceforge.net/cdemu/%{name}-%{version}.tar.bz2
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: glib2-devel >= 2.6.0
- BuildRequires: pkgconfig >= 1:0.14
- BuildRequires: flex >= 2.5.33, bison
- BuildRequires: libsndfile-devel
- BuildRequires: zlib-devel
- BuildRequires: gtk-doc >= 1.4
- Requires(post): shared-mime-info
- Requires(postun): shared-mime-info
- %description
- This is libMirage library, a CD-ROM image access library, and part of the
- userspace-cdemu suite, a free, GPL CD/DVD-ROM device emulator for linux. It is
- written in C and based on GLib.
- The aim of libMirage is to provide uniform access to the data stored in
- different image formats, by creating a representation of disc stored in image
- file, which is based on GObjects.
- %package devel
- Summary: libmirage devel package
- Summary(ja): libMirageの開発パッケージ
- Group: Development/Libraries
- Requires: pkgconfig >= 1:0.14
- Requires: %{name} = %{version}-%{release}
- %description devel
- This is libMirage library, a CD-ROM image access library, and part of the
- userspace-cdemu suite, a free, GPL CD/DVD-ROM device emulator for linux. It is
- written in C and based on GLib.
- This package contains files needed to develop with libMirage.
- %prep
- %setup -q
- %build
- %{configure} --enable-gtk-doc --disable-static
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf $RPM_BUILD_ROOT
- %{__make} install DESTDIR=$RPM_BUILD_ROOT
- %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/*.la
- %{__rm} -f $RPM_BUILD_ROOT%{_libdir}/libmirage*/*.{a,la}
- %clean
- %{__rm} -rf $RPM_BUILD_ROOT
- %post
- /sbin/ldconfig
- update-mime-database %{_datadir}/mime &> /dev/null || :
- %postun
- /sbin/ldconfig
- update-mime-database %{_datadir}/mime &> /dev/null || :
- %files
- %defattr(-, root, root, -)
- %doc AUTHORS ChangeLog COPYING NEWS README
- %{_libdir}/libmirage.so.*
- %{_libdir}/libmirage*/*.so
- %{_datadir}/mime/packages/*
- %files devel
- %defattr(-, root, root, -)
- %{_libdir}/lib*.so
- %{_includedir}/*
- %{_libdir}/pkgconfig/*
- %doc %{_datadir}/gtk-doc/html/*
- %changelog
- * Fri Sep 25 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> - 1.2.0-1
- - initial build for VineSeed
- * Sat Jun 28 2008 Rok Mandeljc <rok.mandeljc@email.si> - 1.1.0-1
- - Updated to 1.1.0
- * Thu Dec 20 2007 Rok Mandeljc <rok.mandeljc@email.si> - 1.0.0-1
- - Initial RPM release.
|