blob: af0c9477989741d1f49717460bdb47cabd09d676 (
plain)
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
|
# Maintainer: dhruvasambrani <dhruvasambrani19 at gmail>
pkgname=quarto-cli-bin-pre-release
pkgver="1.4.74"
pkgrel=1
pkgdesc="An open-source scientific and technical publishing system built on Pandoc (pre-release binary from official repo)"
arch=('x86_64')
license=('GPL')
url="http://quarto.org/"
depends=('bash')
makedepends=()
conflicts=("quarto-cli" "quarto-cli-bin" "quarto-cli-git")
provides=("quarto")
options=(!strip)
source=(https://github.com/quarto-dev/quarto-cli/releases/download/v${pkgver}/quarto-${pkgver}-linux-amd64.deb)
package() {
tar xf data.tar.gz -C "${pkgdir}"
install -d -m755 "${pkgdir}/usr/bin"
ln -s /opt/quarto/bin/quarto "${pkgdir}/usr/bin"
}
sha256sums=('e8d9c326d8f612e27fec6531502f5a71f75277339db68e7614ee449a431dcb90')
|