forked from minad/pacgem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
60 lines (40 loc) · 1.67 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
NAME
pacgem - Install Ruby Gems using the Arch Linux Package Manager (pacman)
SYNOPSIS
pacgem [options] gems...
DESCRIPTION
Pacgem allows direct installation of ruby gems under Arch Linux. It generates a temporary package build script (PKGBUILD).
`makepkg` is used to create a package which is then installed using `sudo pacman`.
-d, --destdir DIR
Destination directory for package files
-c, --create
Create package only, do not install
-u, --update
Update all installed gems
-t, --test
Test if there are any gems to update
-r, --resolveonly
Resolve the gem depencies and exit
-n, --noresolve
Do not resolve any dependencies, this is useful for generating (-create) a single package
--noautodepends
Disable automatic dependency generation for shared objects (*.so)
--nonamcap
Disable package checking with namcap
--nocolor
Disable colored output
--trace
Show a full traceback on error
-h, --help
Display help and exit
-V, --version
Display version and exit
EXAMPLES
pacgem --create rake Create ruby-rake package in the directory ./ruby-rake
pacgem rake-1.0 Create temporary ruby-rake package and install it
pacgem 'rake>1.0' Install ruby-rake version > 1.0
pacgem thin 'rake~>1.0' Install ruby-thin and ruby-rake with version ~>1.0
AUTHOR
Daniel Mendler (mail at daniel-mendler.de)
SEE ALSO
pacman(8), makepkg(8), namcap(1), PKGBUILD(5)