blob: a18bf5edd082f1716429a458568e0fea7ec9d4d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# Copyright (C) 2013 Patrick McDermott
#
# This file is part of opkbuild.
#
# opkbuild is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# opkbuild is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with opkbuild. If not, see <http://www.gnu.org/licenses/>.
locale_sources = \
locale/en_US/libopkbuild_2.sh \
locale/en_US/opkbuild.sh
locale_MESSAGES = $(locale_sources:.sh=.ms)
SUFFIXES += .ms
CLEANFILES += \
$(locale_MESSAGES)
EXTRA_DIST += \
$(locale_sources)
.sh.ms:
$(AM_V_GEN)$(MKDIR_P) "$$(dirname $@)"
$(AM_V_at)cp $< $@
all-local: $(locale_MESSAGES)
install-data-local: $(locale_MESSAGES)
@$(NORMAL_INSTALL)
set -e; for f in $(locale_MESSAGES); do \
ff="$${f#*/}"; \
dd="$(DESTDIR)/$(localedir)/$${ff%/?*}/LC_MESSAGES"; \
$(MKDIR_P) "$${dd}"; \
df="$${dd}/$${ff##*/}"; \
cp "$${f}" "$${df}"; \
chmod 644 "$${df}"; \
done
uninstall-local:
@$(NORMAL_UNINSTALL)
set -e; for f in $(locale_MESSAGES); do \
ff="$${f#*/}"; \
dd="$(DESTDIR)/$(localedir)/$${ff%/?*}/LC_MESSAGES"; \
df="$${dd}/$${ff##*/}"; \
rm -f "$${df}"; \
done
|