1 | # Note that this is NOT a relocatable package |
---|
2 | %define ver 0.7 |
---|
3 | %define rel 1 |
---|
4 | %define prefix /usr |
---|
5 | |
---|
6 | Summary: A utility to provide feedback when starting X11 applications. |
---|
7 | Name: xalf |
---|
8 | Version: %ver |
---|
9 | Release: %rel |
---|
10 | Copyright: GPL |
---|
11 | Group: X11/Utilities |
---|
12 | Source: xalf-%{ver}.tgz |
---|
13 | #BuildRoot: /var/tmp/xalf-%{PACKAGE_VERSION}-root |
---|
14 | URL: http://www.lysator.liu.se/~astrand/projects/xalf |
---|
15 | |
---|
16 | %description |
---|
17 | This is a small utility to provide feedback when starting X11 |
---|
18 | applications. Feedback can be given via four different indicators: |
---|
19 | An invisible window (to be used in conjunction with a task pager like |
---|
20 | Gnomes tasklist_applet or KDE Taskbar), an generic splashscreen, an |
---|
21 | hourglass attached to the mouse cursor or an animated star. |
---|
22 | |
---|
23 | %changelog |
---|
24 | * Mon Feb 12 2001 Peter Åstrand <astrand@lysator.liu.se> |
---|
25 | - version 0.7 (yes, two releases on the same day!) |
---|
26 | |
---|
27 | * Mon Feb 12 2001 Peter Åstrand <astrand@lysator.liu.se> |
---|
28 | - version 0.6 |
---|
29 | |
---|
30 | * Wed Jan 31 2001 Peter Åstrand <astrand@lysator.liu.se> |
---|
31 | - version 0.5 |
---|
32 | |
---|
33 | * Sun Jun 18 2000 Peter Astrand <altic@lysator.liu.se> |
---|
34 | - version 0.4 |
---|
35 | |
---|
36 | * Thu Jun 1 2000 Peter Astrand <altic@lysator.liu.se> |
---|
37 | - version 0.3 |
---|
38 | |
---|
39 | * Sat Apr 15 2000 Peter Astrand <altic@lysator.liu.se> |
---|
40 | - version 0.2 |
---|
41 | |
---|
42 | %prep |
---|
43 | %setup |
---|
44 | |
---|
45 | %build |
---|
46 | CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix |
---|
47 | make |
---|
48 | |
---|
49 | %install |
---|
50 | rm -rf $RPM_BUILD_ROOT |
---|
51 | |
---|
52 | make prefix=$RPM_BUILD_ROOT%{prefix} install-strip |
---|
53 | |
---|
54 | %clean |
---|
55 | rm -rf $RPM_BUILD_ROOT |
---|
56 | |
---|
57 | %post -p /sbin/ldconfig |
---|
58 | |
---|
59 | %postun -p /sbin/ldconfig |
---|
60 | |
---|
61 | %files |
---|
62 | %defattr(-, root, root) |
---|
63 | |
---|
64 | %doc AUTHORS FAQ COPYING ChangeLog NEWS README INSTALL TODO BUGS extras |
---|
65 | %{prefix}/lib/libxalflaunch.* |
---|
66 | %{prefix}/bin/xalf |
---|
67 | %{prefix}/bin/xalfoff |
---|
68 | %{prefix}/bin/xalf-capplet |
---|
69 | %{prefix}/share/pixmaps/hourglass-big.png |
---|
70 | %{prefix}/share/pixmaps/hourglass-small.png |
---|
71 | %{prefix}/share/control-center/Xalf/.directory |
---|
72 | %{prefix}/share/control-center/Xalf/settings.desktop |
---|
73 | %{prefix}/share/gnome/apps/Settings/Xalf/settings.desktop |
---|
74 | |
---|
75 | |
---|