blob: 787fabfa67cfbce6af488772c37fcbeaf363adf8 (
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
|
# Maintainer: heavysink <winstonwu91 at gmail>
pkgname=quarto-cli-bin
pkgver=1.3.361
pkgrel=1
pkgdesc="An open-source scientific and technical publishing system built on Pandoc (binary from official repo)"
arch=('x86_64')
license=('GPL')
url="http://quarto.org/"
depends=('bash')
makedepends=()
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=('4dc6ed39e862643fff6d4b98a4cef355fcff6249f50d9079092f320f82837cd9')
|