]> git.pld-linux.org Git - packages/gcombust.git/blob - gcombust.spec
- added using CVS keywords in %changelog (for automating them).
[packages/gcombust.git] / gcombust.spec
1 %define name    gcombust
2 %define version 0.1.12
3 %define release 1
4 %define serial  1
5
6 Summary:        gcombust is a GTK+ frontend for mksisofs and cdrecord.
7 Name:           %{name}
8 Version:        %{version}
9 Release:        %{release}
10 Serial:         %{serial}
11 Copyright:      GPL
12 Group:          X11/Utilities
13 URL:            http://www.iki.fi/jmunsin/gcombust
14 Vendor:         Jonas Munsin <jmunsin@iki.fi>
15 Source:         %{name}-%{version}.tar.gz
16 Distribution:   Freshmeat RPMs
17 Requires:       gtk+ >= 1.2.0, cdrecord, mkisofs, cdlabelgen >= 1.1.3
18 Packager:       Ryan Weaver <ryanw@infohwy.com>
19 BuildRoot:      /tmp/%{name}-%{version}
20
21 %description
22 gcombust is a gui for mkisofs and cdrecord Linux. It's written
23 in C and it uses the GTK+ widget set (currently it's been tested
24 and used only on Linux and X-Windows). gcombust is work in progress,
25 the current (development) release is to be considered beta software.
26 That means it hasn't been tested very well and that some parts of
27 the code isn't written.
28
29 %prep
30 %setup -q
31 CFLAGS=$RPM_OPT_FLAGS \
32 ./configure --prefix=/usr
33
34 %build
35 make
36
37 %install
38 if [ -e $RPM_BUILD_ROOT ]; then rm -rf $RPM_BUILD_ROOT; fi
39 mkdir -p $RPM_BUILD_ROOT/usr/bin
40 make prefix=$RPM_BUILD_ROOT/usr install-strip
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %files
46 %defattr(-,root,root)
47 %doc AUTHORS COPYING ChangeLog INSTALL NEWS README README.irix THANKS
48 /usr/bin/gcombust
This page took 0.048357 seconds and 3 git commands to generate.