mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-30 06:41:31 +00:00
27 lines
594 B
Plaintext
27 lines
594 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# debtap
|
|
|
|
> Convert Debian packages into Arch Linux packages.
|
|
> See also: `pacman-upgrade`.
|
|
> More information: <https://github.com/helixarch/debtap>.
|
|
|
|
- Update debtap database (before the first run):
|
|
|
|
`sudo debtap --update`
|
|
|
|
- Convert the specified package:
|
|
|
|
`debtap {{path/to/package.deb}}`
|
|
|
|
- Convert the specified package bypassing all questions, except for editing metadata files:
|
|
|
|
`debtap --quiet {{path/to/package.deb}}`
|
|
|
|
- Generate a PKGBUILD file:
|
|
|
|
`debtap --pkgbuild {{path/to/package.deb}}`
|