From e7f7a0b4b90bfdf3d8b78cb6d657b2910054aaf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=A5=D1=80?= =?UTF-8?q?=D0=B0=D0=BC=D0=BE=D0=B2?= Date: Sat, 20 Apr 2024 12:13:59 +0300 Subject: [PATCH] 1 --- dev_gamemode/lure | 33 --------------------------------- pnpm/lure.sh | 7 +++++-- 2 files changed, 5 insertions(+), 35 deletions(-) delete mode 100644 dev_gamemode/lure diff --git a/dev_gamemode/lure b/dev_gamemode/lure deleted file mode 100644 index ae392ba..0000000 --- a/dev_gamemode/lure +++ /dev/null @@ -1,33 +0,0 @@ -name='gamemode' -version='1.8.1' -release='1' -desc='GameMode is a daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS and/or a game process.' -homepage='https://' -maintainer="Евгений Храмов " -architectures=('amd64') -license=('') -provides=('') -conflicts=('') -deps=('') -build_deps=('') - -sources=("") -checksums=('SKIP') - -sources_amd64=("") -checksums=('SKIP') - -sources_arm=("") -checksums=('SKIP') - -sources_386=("") -checksums=('SKIP') - -prepare() { - cd "${srcdir}" -} - -package() { - install -Dm755 ./${name}v${version}/ "${pkgdir}/usr/bin/" - install -Dm644 "${srcdir}/" "${pkgdir}/usr/lib/" -} diff --git a/pnpm/lure.sh b/pnpm/lure.sh index f305101..68474e1 100644 --- a/pnpm/lure.sh +++ b/pnpm/lure.sh @@ -9,14 +9,17 @@ license=('MIT') provides=('pnpm') conflicts=('pnpm' 'pnpm-git') -source=("git+https://github.com/pnpm/pnpm.git#tag=v${version}?signed") +source=("git+https://github.com/pnpm/pnpm.git#tag=v${version}") checksum=('SKIP') build() { cd ${srcdir} - wget https://github.com/pnpm/pnpm/releases/download/v${version}/pnpm-linux-x64 + + chmod +x pnpm-linux-x64 + pnpm-linux-x64 setup --force } package() { cd ${srcdir} + }