Skip to content

Commit

Permalink
Improve README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
FreedomBen committed Apr 29, 2020
1 parent 67e6d76 commit 5970500
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

**If you are just looking for an RPM for [pick](https://github.com/mptre/pick), check the [Releases page](https://github.com/FreedomBen/pick-rpm/releases)**

If you run Fedora and want to install the latest:

Fedora 32 x86_64 - pick v4.0.0

```bash
cd /tmp/
wget ''
dnf install /tmp/pick-4.0.0-1.fc32.x86_64.rpm
```

Fedora 31 x86_64 - pick v3.0.1

```bash
cd /tmp/
wget ''
dnf install /tmp/pick-3.0.1-1.fc31.x86_64.rpm
```

This repository builds [pick](https://github.com/mptre/pick) RPMs for Fedora/RHEL/CentOS.


Expand All @@ -22,3 +40,15 @@ Yes hopefully. That is the goal. The todo list:
1. Meet all requirements for inclusion in Fedora
1. Get package accepted into Fedora repositories
1. Get package accepted into EPEL

## What about ARM?

Coming soon, as long as pick will build on ARM

## Why aren't these packages signed?

Coming soon. One step at a time. Building RPMs is painful, slow, thankless work.

## Things that don't work all the way yet

1. Man pages
File renamed without changes.
7 changes: 7 additions & 0 deletions test/Dockerfile.f31
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM fedora:31

COPY rpms/ /tmp

RUN cd /tmp \
&& dnf install -y pick-3.0.1-1.fc31.x86_64.rpm \
&& command -v pick
7 changes: 7 additions & 0 deletions test/Dockerfile.f32
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM fedora:32

COPY rpms/ /tmp

RUN cd /tmp \
&& dnf install -y pick-4.0.0-1.fc32.x86_64.rpm \
&& command -v pick

0 comments on commit 5970500

Please # to comment.