1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#
# SPEC file for mount.app
#
%define ver 3.0
%define rel 1
%define _prefix /usr
%define execprefix /usr/X11R6
%define datadir %{_prefix}/share
Summary: A Window Maker dock app which simplifies managing mountable devices
Name: mountapp
Version: %ver
Release: %rel
Copyright: GPL
Group: X11/Utilities
BuildRoot: /tmp/mountapp-%ver
Source: http://mountapp.netpedia.net/mountapp-%ver.tar.gz
URL: http://mountapp.netpedia.net
Packager: Steve Borho <steve@borho.org>
%description
This is a Window Maker dock app which allows you to browse all your mount
points and to mount/unmount devices in a simple point and click manner.
%changelog
* Fri Dec 06 2002 Steve Borho <steve@borho.org>
-Included patches to allow mount.app to work with the latest Window
Maker releases.
* Sun Jan 01 2000 Steve Borho <steve@borho.org>
-Included patch from Erico Freitas that fixes support for large paritions.
* Tue Jul 20 1999 Steve Borho <steve@borho.org>
-Fixed support for GTK+-1.2, and included patch from Thomas Schultz for
small devices.
* Mon Jan 11 1999 Paul Johnson <pauljohn@ukans.edu>
-Added Buildroot to keep build out of /usr/X11R6 directory, allow nonroot to
rebuild.
%prep
%setup
%build
./configure --prefix=%{_prefix} --exec-prefix=%{execprefix} --datadir=%{datadir}
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT
make prefix=$RPM_BUILD_ROOT%{_prefix} exec-prefix=$RPM_BUILD_ROOT%{execprefix} bindir=$RPM_BUILD_ROOT/usr/X11R6/bin datadir=$RPM_BUILD_ROOT%{datadir} install-strip
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%{_prefix}
%doc TODO README INSTALL THANKS AUTHORS COPYING NEWS ChangeLog README.smb
|