blob: 0c04b1aba63f8fda8c84e12798c83c6ca2c22264 (
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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
%global debug_package %{nil}
%define use_luajit 0
%undefine __brp_mangle_shebangs
Name: xmake
Version: 3.0.8
Release: 1%{?dist}
Summary: A cross-platform build utility based on Lua
# Application and 3rd-party modules licensing:
# * xmake - Apache-2.0 -- Main tarball;
# * libsv - Public Domain -- static dependency;
# * tbox - Apache-2.0 -- static dependency;
# * xxHash - BSD -- static dependency;
License: Apache-2.0 AND LicenseRef-Fedora-Public-Domain AND BSD
URL: https://xmake.io
Source0: https://github.com/xmake-io/xmake/releases/download/v%{version}/%{name}-v%{version}.tar.gz
Patch0: 0001-use-static-libsv-and-tbox.patch
BuildRequires: pkgconfig(ncurses)
BuildRequires: pkgconfig(liblz4)
%if %{use_luajit}
BuildRequires: pkgconfig(luajit)
%else
BuildRequires: pkgconfig(lua) >= 5.4
%endif
BuildRequires: gcc
BuildRequires: gcc-c++
# Virtual provides for bundled libraries
Provides: bundled(libsv) = 0.0.1
Provides: bundled(libtbox) = 1.7.3
%description
xmake is a lightweight cross-platform build utility based on Lua.
It uses xmake.lua to maintain project builds. Compared with makefile/CMakeLists.txt,
the configuration syntax is more concise and intuitive.
It is very friendly to novices and can quickly get started in a short time.
Let users focus more on actual project development.
It can compile the project directly like Make/Ninja, or
generate project files like CMake/Meson, and it also has a built-in package management
system to help users solve the integrated use of C/C++ dependent libraries.
%prep
%autosetup -n %{name}-%{version} -p1
# Cleanup bundled deps
rm -rf core/src/{lua,luajit,lua-cjson,lz4,pdcurses}/*/
%build
%set_build_flags
%if %{use_luajit}
%configure --external=y --runtime=luajit
%else
%configure --external=y --runtime=lua
%endif
%make_build
%install
mkdir -p %{buildroot}%{_mandir}/man1/
install -Dpm0755 build/xmake \
%{buildroot}%{_bindir}/%{name}
install -Dpm0755 scripts/xrepo.sh \
%{buildroot}%{_bindir}/xrepo
install -Dpm0644 scripts/man/*1 \
%{buildroot}%{_mandir}/man1/
install -Dpm0644 xmake/scripts/completions/register-completions.bash \
%{buildroot}%{_datadir}/bash-completion/completions/xmake
install -Dpm0644 xmake/scripts/completions/register-completions.fish \
%{buildroot}%{_datadir}/fish/vendor_completions.d/xmake.fish
install -Dpm0644 xmake/scripts/completions/register-completions.zsh \
%{buildroot}%{_datadir}/zsh/site-functions/xmake
cp -rp xmake \
%{buildroot}%{_datadir}/xmake
%check
%{buildroot}%{_bindir}/%{name} --version
%{buildroot}%{_bindir}/xrepo --version
%files
%doc README.md CHANGELOG.md
%license LICENSE.md NOTICE.md
%{_bindir}/%{name}
%{_bindir}/xrepo
%{_datadir}/%{name}
%{_datadir}/bash-completion/completions/xmake
%{_datadir}/zsh/site-functions/xmake
%{_datadir}/fish/vendor_completions.d/xmake.fish
%{_mandir}/man1/*.1*
%changelog
* Tue Jul 11 2023 Zephyr Lykos <[email protected]> - 2.8.1-1
- Update to 2.8.1
* Sun Jun 04 2023 Zephyr Lykos <[email protected]> - 2.7.9-1
- Switch to release tarball
- Use system provided libs if possible
- Fix docs & manpage installation
- Install shell completions
* Sun Oct 18 2020 Ruki Wang <[email protected]> - 2.3.8-1
- v2.3.8 released
* Mon Sep 14 2020 Ruki Wang <[email protected]> - 2.3.7-1
- Initial Commit
|