Commit 830350bf647e5d65e7d20cd5aec82b7a3657a776
1 parent
8f775c9b
Exists in
master
and in
56 other branches
Update Makefile for handling gov_user plugin
Signed-off-by: Alessandro Caetano <alessandro.caetanob@gmail.com> Signed-off-by: Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
Showing
3 changed files
with
10 additions
and
0 deletions
Show diff stats
.gitmodules
| @@ -7,3 +7,6 @@ | @@ -7,3 +7,6 @@ | ||
| 7 | [submodule "spb_migrations"] | 7 | [submodule "spb_migrations"] |
| 8 | path = spb_migrations | 8 | path = spb_migrations |
| 9 | url = git@portal.softwarepublico.gov.br:softwarepublico/spb_migrations.git | 9 | url = git@portal.softwarepublico.gov.br:softwarepublico/spb_migrations.git |
| 10 | +[submodule "gov_user"] | ||
| 11 | + path = gov_user | ||
| 12 | + url = git@softwarepublico.gov.br:softwarepublico/gov_user.git |
Makefile
| @@ -26,6 +26,12 @@ install: | @@ -26,6 +26,12 @@ install: | ||
| 26 | cp -vr spb_migrations/* $(DESTDIR)/$(plugins_dir)/spb_migrations/ | 26 | cp -vr spb_migrations/* $(DESTDIR)/$(plugins_dir)/spb_migrations/ |
| 27 | install -d -m 0755 $(DESTDIR)/$(themes_dir)/noosfero-spb-theme | 27 | install -d -m 0755 $(DESTDIR)/$(themes_dir)/noosfero-spb-theme |
| 28 | cp -vr noosfero-spb-theme/* $(DESTDIR)/$(themes_dir)/noosfero-spb-theme/ | 28 | cp -vr noosfero-spb-theme/* $(DESTDIR)/$(themes_dir)/noosfero-spb-theme/ |
| 29 | + install -d -m 0755 $(DESTDIR)/$(plugins_dir)/gov_user | ||
| 30 | + cp -vr gov_user/* $(DESTDIR)/$(plugins_dir)/gov_user/ | ||
| 29 | cd $(DESTDIR)/$(plugins_dir)/software_communities/ && \ | 31 | cd $(DESTDIR)/$(plugins_dir)/software_communities/ && \ |
| 30 | mkdir -p locale/pt/LC_MESSAGES && \ | 32 | mkdir -p locale/pt/LC_MESSAGES && \ |
| 31 | msgfmt -o locale/pt/LC_MESSAGES/software_communities.mo po/pt/software_communities.po | 33 | msgfmt -o locale/pt/LC_MESSAGES/software_communities.mo po/pt/software_communities.po |
| 34 | + cd .. | ||
| 35 | + cd $(DESTDIR)/$(plugins_dir)/gov_user/ && \ | ||
| 36 | + mkdir -p locale/pt/LC_MESSAGES && \ | ||
| 37 | + msgfmt -o locale/pt/LC_MESSAGES/gov_user.mo po/pt/gov_user.po |
| @@ -0,0 +1 @@ | @@ -0,0 +1 @@ | ||
| 1 | +Subproject commit 6a02343af2e4d078503db34bacbc1c53d3682035 |