steamcmd +

This commit is contained in:
Евгений Храмов 2023-02-20 14:16:52 +03:00
parent d4000194a2
commit 33071008f5

@ -1,17 +1,16 @@
name='steamcmd' name='steamcmd'
version='' version='1'
release='1' release='1'
desc='' desc='Steam Command Line Tools'
homepage='https://' homepage='http://developer.valvesoftware.com/wiki/SteamCMD'
maintainer="Евгений Храмов <xpamych@yandex.ru>" maintainer="Евгений Храмов <xpamych@yandex.ru>"
architectures=('amd64') architectures=('amd64, 386')
license=('') license=('custom')
provides=('') provides=('steamcmd, steamerrorreporter')
conflicts=('') conflicts=('steamcmd, steamerrorreporter')
deps=('') deps_amd64=('lib32-gcc-libs')
build_deps=('')
sources=("") sources=("https://steamcdn-a.akamaihd.net/client/installer/steamcmd_linux.tar.gz steamcmd")
checksums=('SKIP') checksums=('SKIP')
sources_amd64=("") sources_amd64=("")
@ -28,6 +27,10 @@ prepare() {
} }
package() { package() {
install -Dm755 ./${name}v${version}/ "${pkgdir}/usr/bin/" install -Dm755 ./${name}/steamcmd "${pkgdir}/usr/bin/steamcmd"
install -Dm644 "${srcdir}/" "${pkgdir}/usr/lib/" install -Dm755 ./${name}/steamcmd.sh "${pkgdir}/usr/share/steamcmd/steamcmd.sh"
install -Dm755 ./${name}/linux32/crashhandler.so "${pkgdir}/usr/share/steamcmd/linux32/crashhandler.so"
install -Dm755 ./${name}/linux32/libstdc++.so.6 "${pkgdir}/usr/share/steamcmd/linux32/libstdc++.so.6"
install -Dm755 ./${name}/linux32/steamcmd "${pkgdir}/usr/share/steamcmd/linux32/steamcmd"
install -Dm755 ./${name}/linux32/steamerrorreporter "${pkgdir}/usr/share/steamcmd/linux32/steamerrorreporter"
} }