-
Notifications
You must be signed in to change notification settings - Fork 76
/
Makefile
executable file
·83 lines (64 loc) · 2.29 KB
/
Makefile
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#
# Bamboo - A Vietnamese Input method editor
# Copyright (C) 2018 Luong Thanh Lam <[email protected]>
#
# This program 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.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#
CC=cc
engine_name=bamboo
engine_gui_name=ibus-setup-Bamboo.desktop
ibus_e_name=ibus-engine-$(engine_name)
pkg_name=ibus-$(engine_name)
version=0.8.4
engine_dir=$(PREFIX)/share/$(pkg_name)
ibus_dir=$(PREFIX)/share/ibus
GOLDFLAGS=-ldflags "-w -s -X main.Version=$(version)
rpm_src_dir=~/rpmbuild/SOURCES
tar_file=$(pkg_name)-$(version).tar.gz
rpm_src_tar=$(rpm_src_dir)/$(tar_file)
tar_options_src=--transform "s/^\./$(pkg_name)-$(version)/" --exclude=.git --exclude="*.tar.gz" .
all: build
build:
bash scripts/build.bash
test:
bash scripts/test.bash
clean:
rm -f ibus-engine-bamboo
rm -f *_linux *_cover.html go_test_* go_build_* test *.gz test
rm -f debian/files
rm -rf debian/debhelper*
rm -rf debian/.debhelper
rm -rf debian/ibus-bamboo*
install: build
bash scripts/install.bash ${PREFIX} ${DESTDIR}
uninstall:
rm -rf $(DESTDIR)$(engine_dir)
rm -rf $(DESTDIR)$(PREFIX)/lib/ibus-$(engine_name)/
rm -f $(DESTDIR)$(ibus_dir)/component/$(engine_name).xml
rm -rf $(DESTDIR)$(PREFIX)/share/applications/$(engine_gui_name)
src: clean
tar -zcf $(DESTDIR)/$(tar_file) $(tar_options_src)
cp -f data/$(pkg_name).spec $(DESTDIR)/
cp -f data/$(pkg_name).dsc $(DESTDIR)/
cp -f debian/changelog $(DESTDIR)/debian.changelog
cp -f debian/control $(DESTDIR)/debian.control
cp -f debian/compat $(DESTDIR)/debian.compat
cp -f debian/rules $(DESTDIR)/debian.rules
cp -f archlinux/PKGBUILD-obs $(DESTDIR)/PKGBUILD
rpm: clean
tar -zcf $(rpm_src_tar) $(tar_options_src)
rpmbuild $(pkg_name).spec -ba
deb: clean
dpkg-buildpackage
.PHONY: build clean build install uninstall src rpm deb