mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-02-03 15:27:17 +08:00
23 lines
393 B
Markdown
23 lines
393 B
Markdown
{{ include('../packages/tar/README.md') }}
|
|
## Настройка
|
|
|
|
```bash
|
|
./configure --prefix=/usr \
|
|
--host=$LIN_TGT \
|
|
--build=$(build-aux/config.guess) \
|
|
--disable-nls --disable-acl \
|
|
--bindir=/bin
|
|
```
|
|
|
|
## Сборка
|
|
|
|
```bash
|
|
make
|
|
```
|
|
|
|
## Установка
|
|
|
|
```bash
|
|
make DESTDIR=$LIN install
|
|
```
|