summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-10-30 15:04:07 -0700
committerAnas Nashif <anas.nashif@intel.com>2012-10-30 15:04:07 -0700
commit462048523eb68aa87c7d5a86a0e7f510b058a17f (patch)
treeb82ad1f6021bc94ea2478fd4f906756b83d1d037 /packaging
parenta086d9b0c33d54bbce83fafe4057e8b8dc28a35e (diff)
downloadchrpath-462048523eb68aa87c7d5a86a0e7f510b058a17f.tar.gz
chrpath-462048523eb68aa87c7d5a86a0e7f510b058a17f.tar.bz2
chrpath-462048523eb68aa87c7d5a86a0e7f510b058a17f.zip
Diffstat (limited to 'packaging')
-rw-r--r--packaging/chrpath.spec36
1 files changed, 36 insertions, 0 deletions
diff --git a/packaging/chrpath.spec b/packaging/chrpath.spec
new file mode 100644
index 0000000..9605153
--- /dev/null
+++ b/packaging/chrpath.spec
@@ -0,0 +1,36 @@
+Name: chrpath
+Version: 0.13
+Release: 3
+License: GPL+
+Summary: Modify rpath of compiled programs
+Url: http://www.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/
+Group: Development/Tools
+Source0: http://www.tux.org/pub/X-Windows/ftp.hungry.com/chrpath/%{name}-%{version}.tar.gz
+
+%description
+chrpath allows you to modify the dynamic library load path (rpath) of
+compiled programs. Currently, only removing and modifying the rpath
+is supported.
+
+%prep
+%setup -q
+
+
+%build
+
+%configure --disable-static
+# Call make instruction with smp support
+make %{?_smp_mflags}
+
+%install
+%make_install
+
+rm -fr %{buildroot}/usr/doc
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS COPYING README
+%{_bindir}/chrpath
+%doc %{_mandir}/man1/chrpath.1*
+
+