]> git.pld-linux.org Git - packages/embryo.git/blob - embryo.spec
846588591e8c915e71cd31fbc7234eb8e6be193f
[packages/embryo.git] / embryo.spec
1 Summary:        Enlightenment Fundation Libraries - embryo
2 Name:           embryo
3 Version:        0.9.1
4 %define _snap   20050105
5 Release:        0.%{_snap}.0.1
6 License:        BSD
7 Group:          X11/Libraries
8 #Source0:       http://dl.sourceforge.net/enlightenment/%{name}-%{version}.tar.gz
9 Source0:        ftp://ftp.sparky.homelinux.org/pub/e17/%{name}-%{version}-%{_snap}.tar.gz
10 # Source0-md5:  f92d19c71263a9b5560206966357a6b6
11 URL:            http://enlightenment.org/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libtool
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Embryo is a tiny library designed as a virtual machine to interpret a
19 limited set of small compiled programs.
20
21 %package devel
22 Summary:        Embryo headers, documentation and test programs
23 Group:          Development/Libraries
24 Requires:       %{name} = %{version}
25
26 %description devel
27 Headers, test programs and documentation for Embryo.
28
29 %package static
30 Summary:        Static libraries
31 Group:          Development/Libraries
32 Requires:       %{name}-devel = %{version}
33
34 %description static
35 Static libraries.
36
37 %prep
38 %setup -q -n %{name}
39
40 %build
41 %{__libtoolize}
42 %{__aclocal}
43 %{__autoconf}
44 %{__autoheader}
45 %{__automake}
46 %configure
47 %{__make}
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51 %{__make} install \
52         DESTDIR=$RPM_BUILD_ROOT
53
54 %clean
55 rm -rf $RPM_BUILD_ROOT
56
57 %post   -p /sbin/ldconfig
58 %postun -p /sbin/ldconfig
59
60 %files
61 %defattr(644,root,root,755)
62 %doc AUTHORS COPYING* README
63 %attr(755,root,root) %{_libdir}/libembryo.so.*
64 %attr(755,root,root) %{_bindir}/embryo_cc
65 %attr(755,root,root) %{_bindir}/embryo
66
67 %files devel
68 %defattr(644,root,root,755)
69 %{_libdir}/libembryo.la
70 %attr(755,root,root) %{_libdir}/libembryo.so
71 %attr(755,root,root) %{_bindir}/embryo-config
72 %{_datadir}/%{name}
73 %{_pkgconfigdir}/embryo.pc
74 %{_includedir}/Embryo*
75
76
77 %files static
78 %defattr(644,root,root,755)
79 %{_libdir}/libembryo.a
This page took 0.297511 seconds and 3 git commands to generate.