]> git.pld-linux.org Git - packages/dnotify.git/commitdiff
- raw version from tar ball.
authorkloczek <kloczek@pld-linux.org>
Fri, 17 Jan 2003 01:43:14 +0000 (01:43 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    dnotify.spec -> 1.1

dnotify.spec [new file with mode: 0644]

diff --git a/dnotify.spec b/dnotify.spec
new file mode 100644 (file)
index 0000000..a766616
--- /dev/null
@@ -0,0 +1,49 @@
+%define package @PACKAGE@
+%define version @VERSION@
+%define prefix /usr
+%define release 1
+
+Summary:   Execute a command when the contents of a directory change
+Name:      %{package}
+Version:   %{version}
+Release:   %{release}
+Serial:    1
+Copyright: GPL
+Group:     Applications/File
+Vendor:    Oskar Liljeblad <oskar@osk.mine.nu>
+URL:       http://www.student.lu.se/~nbi98oli/dnotify.html
+Source:    %{package}-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+
+%description
+dnotify is a simple program that makes it possible to execute a command
+every time the contents of a specific directory change in linux. It is run
+from the command line and takes two arguments: one or more directories to
+monitor and a command to execute whenever a directory has changed. Options
+control what events to trigger on: when a file was read in the directory,
+when one was created, deleted and so on.
+
+%prep
+%setup -q
+
+%build
+export CFLAGS="${RPM_OPT_FLAGS}" CPPFLAGS="${RPM_OPT_FLAGS}";
+./configure --prefix=%{prefix};
+make;
+
+%install
+rm -rf %{buildroot}
+mkdir -p %{buildroot}
+make prefix=%{buildroot}%{prefix} \
+       mandir=$RPM_BUILD_ROOT%{_mandir} \
+       sysconfdir=%{buildroot}/etc \
+       install
+
+%clean
+rm -rf %{buildroot}
+
+%files
+%defattr(-,root,root)
+%doc README AUTHORS COPYING NEWS TODO
+%{_mandir}/*/*
+%{_bindir}/*
This page took 0.075592 seconds and 4 git commands to generate.