File: dev.md

package info (click to toggle)
rust-libheif-sys 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 812 kB
  • sloc: makefile: 11; ansic: 6
file content (32 lines) | stat: -rw-r--r-- 619 bytes parent folder | download
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
# Init the project

Clone this repo with fetching all the data of submodules

```shell
git clone --recurse-submodules https://github.com/Cykooz/libheif-sys.git
```

Or init and fetch all the data of submodules if you already have cloned the
repo without submodules:

```shell
git submodule init
git submodule update
```

# Pull changes with submodules updating

```shell
git pull --recurse-submodules
```

# Update a version of embedded libheif

- Fetch from remote repository:
  ```shell
  git -C vendor/libheif fetch origin
  ```
- Checkout to required tag:
  ```shell
  git -C vendor/libheif/ checkout v1.19.8
  ```