diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-08-31 18:48:47 -0700 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2016-09-06 15:01:48 +0000 |
commit | 88ccc91ba960766730974f30cc0ea4360d1d01c8 (patch) | |
tree | f8cab1ef8005a4f31f29aea8c58b464cc073b44f | |
parent | 6b85ac7fa1a7a9dab5a23a39d3d3b6b8e0d92aa4 (diff) |
VPP-374: getting jvppgen.py into rpm vpp-devel package
Change-Id: Ia2643f33170da92fde0f8228c8d8393f23e98d11
Signed-off-by: Ed Warnicke <eaw@cisco.com>
(cherry picked from commit 406ab9d3657d028c974069ce63807a88dfa62a4f)
-rw-r--r-- | build-root/rpm/vpp.spec | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/build-root/rpm/vpp.spec b/build-root/rpm/vpp.spec index 4a666e68aa4..90a3c3aafa0 100644 --- a/build-root/rpm/vpp.spec +++ b/build-root/rpm/vpp.spec @@ -83,6 +83,7 @@ do ( cd %{buildroot}%{_libdir} && ln -fs $file $(echo $file | sed -e 's/\(\.so\.[0-9]\+\).*/\1/') ) done + # # devel # @@ -97,6 +98,13 @@ do install -p -m 644 $dir/$file %{buildroot}%{_includedir}/$file done done + +mkdir -p -m755 %{buildroot}%{python2_sitelib}/jvppgen +install -p -m755 ../../vpp-api/java/jvpp/gen/jvpp_gen.py %{buildroot}/usr/bin +for i in $(ls ../../vpp-api/java/jvpp/gen/jvppgen/*.py); do + install -p -m666 ${i} %{buildroot}%{python2_sitelib}/jvppgen +done; + # sample plugin mkdir -p -m755 %{buildroot}/usr/share/doc/vpp/examples/sample-plugin/sample for file in $(cd %{_vpp_install_dir}/../../sample-plugin && find -type f -print) @@ -128,5 +136,8 @@ sysctl --system %files devel %defattr(-,bin,bin) /usr/bin/vppapigen +/usr/bin/jvpp_gen.py %{_includedir}/* +%{python2_sitelib}/jvppgen/* /usr/share/doc/vpp/examples/sample-plugin + |