annotate xmms-sid.spec.in @ 81:977fd0868a03

Updated description of package
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 03 Oct 2003 03:14:01 +0000
parents ccab75d0dacc
children 63cf9b2ddadf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 %define name @PACKAGE@
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 %define version @VERSION@
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3 %define release 1
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 %define serial 1
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 Summary: XMMS-SID - SIDPlay plugin for XMMS
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7 Name: %{name}
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
8 Version: %{version}
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 Release: %{release}
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 Serial: %{serial}
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
11 Copyright: GPL
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
12 Group: Applications/Multimedia
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
13 Vendor: Matti "ccr/TNSP" Hamalainen <ccr@tnsp.org>
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
14 Url: http://www.tnsp.org/xmms-sid.php
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
15 Source: %{name}-%{version}.tar.gz
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 BuildRoot: %{_tmpdir}/%{name}-%{version}-root
47
fd610bb817bc Updated specfile, added new configure options and improved detections
Matti Hamalainen <ccr@tnsp.org>
parents: 43
diff changeset
17 Requires: gtk+ >= 1.2.8, glib >= 1.2.8, xmms = @XMMS_VERSION@
43
3c609b6d5a02 Automagic updating of spec.in-file via configure
Matti Hamalainen <ccr@tnsp.org>
parents: 11
diff changeset
18 Requires: @REQUIRE_LIBRARY@
11
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20 %description
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
21 Input plugin for XMMS to play SID-tunes (C64 music files).
81
977fd0868a03 Updated description of package
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
22 Requires either (or both) libSIDPlay v1.x or v2.x. Includes
977fd0868a03 Updated description of package
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
23 good configurability (settings for filters and other SID-
977fd0868a03 Updated description of package
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
24 emulation parameters, extensive fileinfo), has STIL-database
977fd0868a03 Updated description of package
Matti Hamalainen <ccr@tnsp.org>
parents: 51
diff changeset
25 support, song-length database support and more.
11
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
26
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27 %prep
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28 %setup -q
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
29
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30 %build
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31 export CFLAGS="$RPM_OPT_FLAGS" CPPFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS";
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
33 ./configure \
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
34 --prefix=%{_prefix} \
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35 --sysconfdir=%{_sysconfdir} --bindir=%{_bindir} \
47
fd610bb817bc Updated specfile, added new configure options and improved detections
Matti Hamalainen <ccr@tnsp.org>
parents: 43
diff changeset
36 --libdir=%{_libdir}/xmms/Input --datadir=%{_datadir} \
fd610bb817bc Updated specfile, added new configure options and improved detections
Matti Hamalainen <ccr@tnsp.org>
parents: 43
diff changeset
37 --includedir=%{_includedir}
11
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 gmake
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41 %install
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43 gmake PREFIX=$RPM_BUILD_ROOT%{_prefix} \
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 prefix=$RPM_BUILD_ROOT/%{_prefix} \
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
45 sysconfdir=$RPM_BUILD_ROOT/%{_sysconfdir} \
47
fd610bb817bc Updated specfile, added new configure options and improved detections
Matti Hamalainen <ccr@tnsp.org>
parents: 43
diff changeset
46 bindir=$RPM_BUILD_ROOT/%{_bindir} \
fd610bb817bc Updated specfile, added new configure options and improved detections
Matti Hamalainen <ccr@tnsp.org>
parents: 43
diff changeset
47 libdir=$RPM_BUILD_ROOT/%{_libdir}/xmms/Input \
11
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
48 datadir=$RPM_BUILD_ROOT/%{_datadir} \
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 includedir=$RPM_BUILD_ROOT/%{_includedir} install
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
51 %post -p /sbin/ldconfig
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 %postun -p /sbin/ldconfig
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
54 %clean
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
55 [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57 %files
c342e8514754 And more...
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58 %defattr(-, root, root)
47
fd610bb817bc Updated specfile, added new configure options and improved detections
Matti Hamalainen <ccr@tnsp.org>
parents: 43
diff changeset
59 %doc AUTHORS COPYING FAQ NEWS README* THANKS TODO BUGS
51
ccab75d0dacc Include only .so-files from build
Matti Hamalainen <ccr@tnsp.org>
parents: 47
diff changeset
60 %{_libdir}/xmms/Input/*.so