-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
64 lines (50 loc) · 1.35 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
61
62
63
64
BSD ports Makefile-like for slackbuilds repository.
Installation:
First, clone the slackbuilds repository:
$ git clone git://git.slackbuilds.org/slackbuilds.git
$ cd slackbuilds
$ git reset --hard HEAD
Copy the included Makefile into the slackbuilds repository:
$ cp /path/to/Makefile .
And, install it by issuing:
$ make link
Uninstallation:
Issue:
$ cd slackbuilds
$ make delink
$ rm -f Makefile
Usage:
To search a package:
$ make search name=foo
or case insensitively:
$ make isearch name=foo
or the exact name:
$ make esearch name=foo
To generate SlackBuild script:
$ make template
To list dependencies:
$ cd $(make search name=foo)
$ make list-depends
To fetch a package:
$ cd $(make search name=foo)
$ make fetch
To verify the downloaded sources via `make fetch`:
$ cd $(make search name=foo)
$ make md5
To remove sources that don't exist in `.info` file:
$ cd $(make search name=foo)
$ make dist-clean
or for all packages:
$ make dist-clean-all
To build a package:
$ cd $(make search name=foo)
$ make
To clean up after building:
$ cd $(make search name=foo)
$ make clean
To install a package:
$ cd $(make search name=foo)
$ make install
To remove a package:
$ cd $(make search name=foo)
$ make deinstall