]> git.pld-linux.org Git - packages/SILLY.git/commitdiff
- new auto/th/SILLY-0_1_0-1
authorJakub Bogusz <qboosh@pld-linux.org>
Sun, 27 May 2007 22:11:57 +0000 (22:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    SILLY.spec -> 1.1

SILLY.spec [new file with mode: 0644]

diff --git a/SILLY.spec b/SILLY.spec
new file mode 100644 (file)
index 0000000..06a29cb
--- /dev/null
@@ -0,0 +1,96 @@
+Summary:       Simple Image Loading LibrarY
+Summary(pl.UTF-8):     Simple Image Loading LibrarY - prosta biblioteka do wczytywania obrazów
+Name:          SILLY
+Version:       0.1.0
+Release:       1
+License:       MIT-like
+Group:         Libraries
+Source0:       http://dl.sourceforge.net/crayzedsgui/%{name}-%{version}.tar.gz
+# Source0-md5: c3721547fced7792a36ffc9ce6ec23fd
+Source1:       http://dl.sourceforge.net/crayzedsgui/%{name}-DOCS-%{version}.tar.gz
+# Source1-md5: e52e9043b21a9d35a6da66ce9e84d3e1
+URL:           http://www.cegui.org.uk/wiki/index.php/SILLY
+BuildRequires: libjpeg-devel
+BuildRequires: libpng-devel >= 2:1.2.10
+BuildRequires: libstdc++-devel
+Requires:      libpng >= 2:1.2.10
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+SILLY means Simple Image Loading LibrarY. The aim of this library is
+to provide a simple library for loading image in the context of CEGUI.
+The library supports only the most common image format. The project
+was initialy launch in order to provide an MIT based replacement of
+DevIL with less image format supported and focused on loading image
+only.
+
+%description -l pl.UTF-8
+SILLY oznacza Simple Image Loading LibrarY (prostą bibliotekę do
+wczytywania obrazów). Celem projektu jest udostępnienie prostej
+biblioteki do wczytywania obrazów w kontekście CEGUI. Obsługuje tylko
+najpopularniejsze formaty obrazów. Projekt został zapoczątkowany w
+celu zapewnienia zamiennika MIT biblioteki DevIL z mniejszą liczbą
+obsługiwanych formaów i skupiającego się tylko na wczytywaniu obrazów.
+
+%package devel
+Summary:       Header files for SILLY library
+Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki SILLY
+Group:         Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+Requires:      libjpeg-devel
+Requires:      libpng-devel >= 2:1.2.10
+Requires:      libstdc++-devel
+
+%description devel
+Header files for SILLY library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki SILLY.
+
+%package static
+Summary:       Static SILLY library
+Summary(pl.UTF-8):     Statyczna biblioteka SILLY
+Group:         Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static SILLY library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka SILLY.
+
+%prep
+%setup -q -b 1
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun        -p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS COPYING ChangeLog
+%attr(755,root,root) %{_libdir}/libSILLY.so.*.*.*
+
+%files devel
+%defattr(644,root,root,755)
+%doc doc/html/*
+%attr(755,root,root) %{_libdir}/libSILLY.so
+%{_libdir}/libSILLY.la
+%{_includedir}/SILLY
+%{_pkgconfigdir}/SILLY.pc
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libSILLY.a
This page took 0.080157 seconds and 4 git commands to generate.