-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from curlpipe/0.2.6
0.2.6
- Loading branch information
Showing
18 changed files
with
1,553 additions
and
592 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/target | ||
*.log | ||
bomb.txt | ||
src/] |
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,32 @@ | ||
%define __spec_install_post %{nil} | ||
%define __os_install_post %{_dbpath}/brp-compress | ||
%define debug_package %{nil} | ||
|
||
Name: ox | ||
Summary: A Rust powered text editor. | ||
Version: @@VERSION@@ | ||
Release: @@RELEASE@@%{?dist} | ||
License: GPL-2.0 | ||
Group: Applications/System | ||
Source0: %{name}-%{version}.tar.gz | ||
URL: https://github.com/curlpipe/ox | ||
|
||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root | ||
|
||
%description | ||
%{summary} | ||
|
||
%prep | ||
%setup -q | ||
|
||
%install | ||
rm -rf %{buildroot} | ||
mkdir -p %{buildroot} | ||
cp -a * %{buildroot} | ||
|
||
%clean | ||
rm -rf %{buildroot} | ||
|
||
%files | ||
%defattr(-,root,root,-) | ||
%{_bindir}/* |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "ox" | ||
version = "0.2.5" | ||
authors = ["Curly <[email protected]>"] | ||
version = "0.2.6" | ||
authors = ["Curlpipe <[email protected]>"] | ||
edition = "2018" | ||
description = "A Rust powered text editor." | ||
homepage = "https://github.com/curlpipe/ox" | ||
|
@@ -27,3 +27,12 @@ ron = "0.6.2" | |
serde = "1.0.117" | ||
regex = "1.4.1" | ||
directories = "3.0.1" | ||
|
||
[package.metadata.rpm] | ||
package = "ox" | ||
|
||
[package.metadata.rpm.cargo] | ||
buildflags = ["--release"] | ||
|
||
[package.metadata.rpm.targets] | ||
ox = { path = "/usr/bin/ox" } |
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
Oops, something went wrong.