diff options
author | Anas Nashif <anas.nashif@intel.com> | 2012-10-30 15:04:07 -0700 |
---|---|---|
committer | Anas Nashif <anas.nashif@intel.com> | 2012-10-30 15:04:07 -0700 |
commit | 462048523eb68aa87c7d5a86a0e7f510b058a17f (patch) | |
tree | b82ad1f6021bc94ea2478fd4f906756b83d1d037 | |
parent | a086d9b0c33d54bbce83fafe4057e8b8dc28a35e (diff) | |
download | chrpath-462048523eb68aa87c7d5a86a0e7f510b058a17f.tar.gz chrpath-462048523eb68aa87c7d5a86a0e7f510b058a17f.tar.bz2 chrpath-462048523eb68aa87c7d5a86a0e7f510b058a17f.zip |
add packagingsubmit/tizen/20130517.020710submit/tizen/20130509.173430submit/tizen/20130503.190448submit/tizen/20130503.184358accepted/tizen/20130520.095147accepted/tizen/20130503.223749
-rw-r--r-- | packaging/chrpath.spec | 36 |
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* + + |