wok rev 16990
caja, engrampa: Fix genpkg rules
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Sat Aug 09 12:56:36 2014 -0300 (2014-08-09) |
parents | 59fad0483733 |
children | 11a6c2255b4e |
files | caja/receipt engrampa/receipt |
line diff
1.1 --- a/caja/receipt Sat Aug 09 09:15:22 2014 +0000 1.2 +++ b/caja/receipt Sat Aug 09 12:56:36 2014 -0300 1.3 @@ -33,13 +33,19 @@ 1.4 1.5 genpkg_rules() 1.6 { 1.7 - mkdir -p $fs/usr/lib/caja $fs/usr/share/pixmaps 1.8 + mkdir -p $fs/usr/lib/$PACKAGE $fs/usr/share/$PACKAGE 1.9 cp -a $install/usr/bin $fs/usr 1.10 cp -a $install/usr/lib/*.so* $fs/usr/lib 1.11 - cp -a $install/usr/lib/caja $fs/usr/lib 1.12 - cp -a $install/usr/share/caja $fs/usr/share 1.13 - cp -a $install/usr/share/dbus-1 $fs/usr/share 1.14 - cp -a $install/usr/share/glib-2.0 $fs/usr/share 1.15 + cp -a $install/usr/lib/$PACKAGE/* $fs/usr/lib/$PACKAGE 1.16 + cp -a $install/usr/share/$PACKAGE/* $fs/usr/share/$PACKAGE 1.17 + 1.18 + mkdir -p $fs/usr/share/applications 1.19 + cp -a $install/usr/share/applications/* $fs/usr/share/applications 1.20 + 1.21 + mkdir -p $fs/usr/share/dbus-1 1.22 + cp -a $install/usr/share/dbus-1/* $fs/usr/share/dbus-1 1.23 + 1.24 + mkdir -p $fs/usr/share/pixmaps 1.25 cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \ 1.26 $fs/usr/share/pixmaps 1.27 }
2.1 --- a/engrampa/receipt Sat Aug 09 09:15:22 2014 +0000 2.2 +++ b/engrampa/receipt Sat Aug 09 12:56:36 2014 -0300 2.3 @@ -31,10 +31,15 @@ 2.4 2.5 genpkg_rules() 2.6 { 2.7 - mkdir -p $fs/usr/share/pixmaps 2.8 + mkdir -p $fs/usr/share/$PACKAGE 2.9 cp -a $install/usr/bin $fs/usr 2.10 cp -a $install/usr/lib $fs/usr 2.11 - cp -a $install/usr/share/$PACKAGE $fs/usr/share 2.12 + cp -a $install/usr/share/$PACKAGE/* $fs/usr/share/$PACKAGE 2.13 + 2.14 + mkdir -p $fs/usr/share/applications 2.15 + cp -a $install/usr/share/applications/* $fs/usr/share/applications 2.16 + 2.17 + mkdir -p $fs/usr/share/pixmaps 2.18 cp -a $install/usr/share/icons/hicolor/32x32/apps/*.png \ 2.19 $fs/usr/share/pixmaps 2.20 }