]> git.pld-linux.org Git - packages/InDependence.git/commitdiff
- based on spec found from asplinux
authorElan Ruusamäe <glen@pld-linux.org>
Sat, 17 Mar 2007 12:13:41 +0000 (12:13 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    InDependence.spec -> 1.1

InDependence.spec [new file with mode: 0644]

diff --git a/InDependence.spec b/InDependence.spec
new file mode 100644 (file)
index 0000000..f8dafe8
--- /dev/null
@@ -0,0 +1,57 @@
+Summary:       RPM Dependency Tracker
+Name:          InDependence
+Version:       1.0
+Release:       1
+Group:         Applications/System
+Source0:       %{name}_%{version}.tar.gz
+# Source0-md5: df419e1443683305891060985f723902
+Patch0:                %{name}_1.0-rpmlib.asp.patch
+License:       Artistic License
+URL:           http://www.cse.ogi.edu/DISC/projects/independence/
+BuildArch:     noarch
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+InDependence is a suite of tools (well two :-) designed to help RPM
+packagers and system administrators deal with the dependencies between
+RPM packages. InDependence has two major components:
+
+Dep: This tool is for the RPM packager that identifies external files
+or RPM packages that a program uses.
+
+RPMTC: "RPM Transitive Closure". This tool is for the RPM system
+administrator. "rpmtc foo.rpm" will transitively compute the -
+- *entire* set of RPMs necessary to support the foo.rpm package, i.e.
+  if foo.rpm depends on bar.rpm, and bar.rpm depends on baz.rpm, RPMTC
+  will report both bar and baz.
+
+%prep
+%setup -q -n %{name}_%{version}
+%patch0 -p1
+
+%build
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d ${RPM_BUILD_ROOT}%{_bindir}
+install dep/dep ${RPM_BUILD_ROOT}%{_bindir}/dep
+install dep/swrapper.pl ${RPM_BUILD_ROOT}%{_bindir}/swrapper.pl
+install rpmtc/rpmtc ${RPM_BUILD_ROOT}%{_bindir}/rpmtc
+install rpmtc/rpmdep-pipe ${RPM_BUILD_ROOT}%{_bindir}/rpmdep-pipe
+install -d ${RPM_BUILD_ROOT}%{_mandir}/man1
+install dep/dep.1 ${RPM_BUILD_ROOT}%{_mandir}/man1/dep.1
+install rpmtc/rpmtc.1 ${RPM_BUILD_ROOT}%{_mandir}/man1/rpmtc.1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README
+%attr(755,root,root) %{_bindir}/dep
+%attr(755,root,root) %{_bindir}/rpmdep-pipe
+%attr(755,root,root) %{_bindir}/rpmtc
+%attr(755,root,root) %{_bindir}/swrapper.pl
+%{_mandir}/man1/dep.1*
+%{_mandir}/man1/rpmtc.1*
This page took 0.071627 seconds and 4 git commands to generate.