Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/pbrisbin/paur
- Owner: pbrisbin
- License: mit
- Created: 2012-10-16T17:01:17.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2012-11-29T14:49:34.000Z (about 12 years ago)
- Last Synced: 2024-10-09T09:43:52.286Z (3 months ago)
- Language: Ruby
- Size: 160 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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 AURNote: `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`.