]> git.pld-linux.org Git - SPECS.git/blob - libsidplay.spec
SPECS updated Sat 31 Jul 20:26:02 CEST 2021
[SPECS.git] / libsidplay.spec
1 Summary:        A Commodore 64 music player and SID chip emulator library
2 Summary(pl.UTF-8):      Biblioteka odtwarzająca muzyczki z Commodore 64 i emulująca układ SID
3 Name:           libsidplay
4 Version:        1.36.60
5 Release:        2
6 License:        GPL v2+
7 Group:          Libraries
8 Source0:        http://home.arcor.de/ms2002sep/bak/%{name}-%{version}.tar.bz2
9 # Source0-md5:  46c5ceccd31636e3f83774dd0b3d4003
10 # dead together with geocities
11 #URL:           http://www.geocities.com/SiliconValley/Lakes/5147/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libstdc++-devel
15 BuildRequires:  libtool >= 2:1.5
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 This library provides the Sound Interface Device (SID) chip emulator
20 engine that is used by music player programs like SIDPLAY. With it you
21 can play musics from Commodore 64 (or compatible) programs.
22
23 %description -l pl.UTF-8
24 Ta biblioteka zawiera emulator układu SID (Sound Interface Device),
25 który jest używany przez programy odtwarzające muzykę jak np. SIDPLAY.
26 Przy jej pomocy można odtwarzać muzyczki z programów dla Commodore 64
27 (i kompatybilnych).
28
29 %package devel
30 Summary:        Header files for compiling apps that use libsidplay
31 Summary(pl.UTF-8):      Pliki nagłówkowe do budowania aplikacji używających libsidplay
32 Group:          Development/Libraries
33 Requires:       %{name} = %{version}-%{release}
34 Requires:       libstdc++-devel
35
36 %description devel
37 This package contains the header files for compiling applications that
38 use libsidplay.
39
40 %description devel -l pl.UTF-8
41 Ten pakiet zawiera pliki nagłówkowe do budowania aplikacji używających
42 biblioteki libsidplay.
43
44 %package static
45 Summary:        Static libsidplay library
46 Summary(pl.UTF-8):      Statyczna biblioteka libsidplay
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}-%{release}
49
50 %description static
51 This package contains static version of libsidplay.
52
53 %description static -l pl.UTF-8
54 Ten pakiet zawiera statyczną wersję libsidplay.
55
56 %prep
57 %setup -q
58
59 %build
60 %{__libtoolize}
61 %{__aclocal}
62 %{__autoconf}
63 %{__automake}
64 %configure
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc AUTHORS
82 %attr(755,root,root) %{_libdir}/libsidplay.so.*.*.*
83 %attr(755,root,root) %ghost %{_libdir}/libsidplay.so.1
84
85 %files devel
86 %defattr(644,root,root,755)
87 %doc DEVELOPER src/fastforward.txt src/mixing.txt src/mpu.txt src/panning.txt
88 %attr(755,root,root) %{_libdir}/libsidplay.so
89 %{_libdir}/libsidplay.la
90 %{_includedir}/sidplay
91
92 %files static
93 %defattr(644,root,root,755)
94 %{_libdir}/libsidplay.a
This page took 0.031907 seconds and 3 git commands to generate.