]> git.pld-linux.org Git - SPECS.git/blob - libayemu.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / libayemu.spec
1 Summary:        The AY/YM sound chip emulator library
2 Summary(pl.UTF-8):      Biblioteka emulująca układ dźwiękowy AY/YM
3 Name:           libayemu
4 Version:        1.0.0
5 Release:        1
6 # specified in <ayemu.h>
7 License:        LGPL v2+
8 Group:          Libraries
9 Source0:        http://dl.sourceforge.net/libayemu/%{name}-%{version}.tar.gz
10 # Source0-md5:  548cf778170a982de8ebcb0880b5518c
11 URL:            http://sashnov.nm.ru/libayemu.html
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 This is the AY/YM sound chip emulator. This chip was used in wide
19 range of old popular machines as Sinclair ZX Spectrum 128, Amstrad,
20 Atari ST and others. With this library you can hear music from these
21 computers games or add AY/YM music to your own games/demoz/etc.
22
23 %description -l pl.UTF-8
24 Bibliotela emulująca układ dźwiękowy AY/YM. Układ ten był używany w
25 wielu starych popularnych komputerach takich jak ZX Spectrum 128,
26 Amstrad, Atari ST i innych. Używając tej biblioteki można słuchać
27 muzyki z gier produkowanych na te komputery. Można również użyć plików
28 muzycznych dla układu AY/YM w swoich własnych grach, demach itp.
29
30 %package devel
31 Summary:        Header files for libayemu library
32 Summary(pl.UTF-8):      Pliki nagłówkowe biblioteki libayemu
33 Group:          Development/Libraries
34 Requires:       %{name} = %{version}-%{release}
35
36 %description devel
37 Header files for libayemu library.
38
39 %description devel -l pl.UTF-8
40 Pliki nagłówkowe biblioteki libayemu.
41
42 %package static
43 Summary:        Static libayemu library
44 Summary(pl.UTF-8):      Statyczna biblioteka libayemu
45 Group:          Development/Libraries
46 Requires:       %{name}-devel = %{version}-%{release}
47
48 %description static
49 Static libayemy library.
50
51 %description static -l pl.UTF-8
52 Statyczna biblioteka libayemu.
53
54 %prep
55 %setup -q
56
57 %build
58 %{__libtoolize}
59 %{__aclocal}
60 %{__autoconf}
61 %{__autoheader}
62 %{__automake}
63 %configure
64 %{__make}
65
66 %install
67 rm -rf $RPM_BUILD_ROOT
68
69 %{__make} install \
70         DESTDIR=$RPM_BUILD_ROOT
71
72 %clean
73 rm -rf $RPM_BUILD_ROOT
74
75 %post   -p /sbin/ldconfig
76 %postun -p /sbin/ldconfig
77
78 %files
79 %defattr(644,root,root,755)
80 %doc AUTHORS ChangeLog NEWS README RELEASENOTES THANKS TODO
81 %attr(755,root,root) %{_libdir}/libayemu-1.0.0.so.*.*.*
82 %attr(755,root,root) %ghost %{_libdir}/libayemu-1.0.0.so.0
83
84 %files devel
85 %defattr(644,root,root,755)
86 %attr(755,root,root) %{_libdir}/libayemu.so
87 %{_libdir}/libayemu.la
88 %{_includedir}/ayemu*.h
89
90 %files static
91 %defattr(644,root,root,755)
92 %{_libdir}/libayemu.a
This page took 0.352925 seconds and 3 git commands to generate.