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} + }