File: build-steps.md

package info (click to toggle)
libproxy 0.5.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 728 kB
  • sloc: ansic: 3,455; sh: 228; python: 128; makefile: 37; cs: 18; perl: 6
file content (84 lines) | stat: -rw-r--r-- 1,231 bytes parent folder | download | duplicates (2)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Title: Build steps - How to compile libproxy
Slug: building

# Build steps - How to compile libproxy

## Fedora

### Dependencies

```
sudo dnf install glib2-devel duktape-devel meson gcovr gi-docgen libcurl-devel vala gsettings-desktop-schemas-devel gobject-introspection-devel
```

### Build Setup

```
meson setup build
```

### Compilation

```
ninja -C build
```

### Installation

```
ninja -C build install
```

## OS X

### Dependencies

```
pip install meson ninja
brew install icu4c gobject-introspection duktape gcovr gi-docgen curl vala
```

### Build Setup

```
meson setup build
```

### Compilation

```
ninja -C build
```

### Installation

```
ninja -C build install
```

## Windows (MSYS2)

### Dependencies

```
pacman -S base-devel git mingw-w64-x86_64-toolchain mingw-w64-x86_64-ccache mingw-w64-x86_64-pkg-config mingw-w64-x86_64-gobject-introspection mingw-w64-x86_64-python-gobject mingw-w64-x86_64-meson mingw-w64-x86_64-glib2 mingw-w64-x86_64-duktape mingw-w64-x86_64-gi-docgen mingw-w64-x86_64-curl mingw-w64-x86_64-vala mingw-w64-x86_64-gsettings-desktop-schemas
```

### Build Setup

```
meson setup build
```

### Compilation

```
ninja -C build
```

### Installation

```
ninja -C build install
```