-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf2fd16
commit f490e0f
Showing
2 changed files
with
131 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
Summary: Homebrew package manager | ||
Name: homebrew | ||
Version: 0.0.1 | ||
Release: 1 | ||
License: BSD-2-clause | ||
Group: Development/Tools | ||
Source: https://github.com/Homebrew/brew/archive/refs/tags/%{version}.tar.gz | ||
%define homebrew_user linuxbrew | ||
%define homebrew_directory /home/%{homebrew_user}/.%{homebrew_user} | ||
|
||
# See: https://github.com/Homebrew/install/blob/master/install.sh#L211-L214 | ||
BuildRequires: git | ||
Requires: git>=2.7.0 | ||
Requires: glibc>=2.13 | ||
Requires: ruby>=2.6.0 | ||
|
||
%description | ||
The Missing Package Manager for macOS (or Linux) | ||
|
||
%prep | ||
%autosetup -n brew-%{version} | ||
|
||
%build | ||
git init | ||
git remote add origin https://github.com/Homebrew/brew | ||
git fetch --tags --set-upstream origin | ||
|
||
%install | ||
install -d "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -r bin "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -r completions "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -r manpages "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -r .git "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -r *.md "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -r *.txt "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
cp -rd Library "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
|
||
pushd "$RPM_BUILD_ROOT%{homebrew_directory}" | ||
mkdir -vp Cellar Frameworks etc include lib opt sbin share var/homebrew/linked | ||
|
||
%check | ||
export HOMEBREW_NO_ANALYTICS_THIS_RUN=1 | ||
export HOMEBREW_NO_ANALYTICS_MESSAGE_OUTPUT=1 | ||
%{homebrew_directory}/bin/brew config | ||
%{homebrew_directory}/bin/brew doctor | ||
|
||
%pre | ||
getent passwd %{homebrew_user} >/dev/null || \ | ||
useradd -r -d %{homebrew_directory} -s /sbin/nologin \ | ||
-c "The Homebrew default user" %{homebrew_user} | ||
chown -R "%{homebrew_user}" %{homebrew_directory} | ||
|
||
%files | ||
%{homebrew_directory} | ||
%license %{homebrew_directory}/LICENSE.txt | ||
%doc %{homebrew_directory}/CHANGELOG.md %{homebrew_directory}/CONTRIBUTING.md %{homebrew_directory}/README.md | ||
|
||
%changelog |