summaryrefslogtreecommitdiff
path: root/scripts/plymouth.spec
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2007-06-08 18:56:17 -0400
committerRay Strode <rstrode@redhat.com>2007-06-08 18:56:17 -0400
commit660b3fb33134e080ac70100cc676d1d703042dc6 (patch)
tree42282a2f6558e9a14cb98df037ee7fa30b9d18d5 /scripts/plymouth.spec
parentf9f73b2a50bdf9c97d9a2fd602c5f4c93d041596 (diff)
add half-working sample spec file
Diffstat (limited to 'scripts/plymouth.spec')
-rw-r--r--scripts/plymouth.spec53
1 files changed, 53 insertions, 0 deletions
diff --git a/scripts/plymouth.spec b/scripts/plymouth.spec
new file mode 100644
index 00000000..90ba5b6f
--- /dev/null
+++ b/scripts/plymouth.spec
@@ -0,0 +1,53 @@
+Summary: Plymouth Graphical Boot Animation
+Name: plymouth
+Version: 0.0.1
+Release: 1%{?dist}
+License: GPL
+Group: System Environment/Base
+Source0: %{name}-%{version}.tar.bz2
+URL: http://people.freedesktop.org/~halfline/plymouth
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+Conflicts: rhgb
+BuildRequires: libpng-devel
+Requires: mkinitrd
+
+%description
+Plymouth provides an attractive graphical boot animation in place
+of the text messages that normally get shown.
+
+%prep
+%setup -q
+
+%build
+%configure
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+make install DESTDIR=$RPM_BUILD_ROOT
+
+find $RPM_BUILD_ROOT -name '*.a' -exec rm -f {} \;
+find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+/usr/libexec/plymouth/plymouth-update-initrd > /dev/null
+%preun
+
+%files
+%defattr(-, root, root)
+%doc AUTHORS ChangeLog NEWS README
+%{_datadir}/plymouth/star.png
+%{_libexecdir}/plymouth/plymouth
+%{_libexecdir}/plymouth/plymouth-update-initrd
+%{_libdir}/plymouth/fedora-fade-in.so
+%{_libdir}/libply.so*
+%{_bindir}/rhgb-client
+
+%changelog
+* Fri Jun 8 2007 Ray Strode <rstrode@redhat.com> - 0.0.1-1
+- Initial import, version 0.0.1