Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pbrisbin/paur

POST packages to the AUR
https://github.com/pbrisbin/paur

Last synced: about 2 months ago
JSON representation

POST packages to the AUR

Awesome Lists containing this project

README

        

# Paur

Paur POSTs packages to the AUR.

## Details

1. Does `makepkg --geninteg` into your PKGBUILD
2. Presents the PKGBUILD for final editing
3. Does `makepkg --source` to generate a taurball
4. Uploads that taurball to the AUR

Note: `makepkg --clean` is used to remove working files.

## Installation

~~~
$ git clone https://github.com/pbrisbin/paur
$ cd paur
$ bundle
$ rake install
~~~

## Usage

Export the `AUR_USERNAME` and `AUR_PASSWORD` environment variables.

~~~
Usage: paur [options]
-c, --category CATEGORY
-v, --verbose
~~~

## Rake

~~~ { .ruby }
# Rakefile
require 'paur/task'

Paur::Task.new
~~~

Then, `rake upload`.