23 lines
506 B
Bash
23 lines
506 B
Bash
name='pnpm'
|
|
version='8.15.7'
|
|
release='2'
|
|
desc='Fast, disk space efficient package manager'
|
|
homepage='https://pnpm.io'
|
|
maintainer="Евгений Храмов <xpamych@yandex.ru>"
|
|
architectures=('amd64')
|
|
license=('MIT')
|
|
provides=('pnpm')
|
|
conflicts=('pnpm' 'pnpm-git')
|
|
|
|
source=("git+https://github.com/pnpm/pnpm.git#tag=v${version}?signed")
|
|
checksum=('SKIP')
|
|
|
|
build() {
|
|
cd ${srcdir}
|
|
wget https://github.com/pnpm/pnpm/releases/download/v${version}/pnpm-linux-x64
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}
|
|
}
|