archisteamfarm-bin/PKGBUILD

38 lines
1.5 KiB
Bash
Raw Normal View History

# Maintainer: Knut Ahlers <knut@ahlers.me>
# Contributor: Baron Hou <houbaron@gmail.com>
2018-10-04 07:21:22 +00:00
pkgname=archisteamfarm-bin
2021-03-30 22:06:17 +00:00
pkgver=5.0.5.6
2018-10-05 08:45:08 +00:00
pkgrel=1
2018-10-04 07:21:22 +00:00
pkgdesc="C# application that allows you to farm steam cards using multiple steam accounts simultaneously."
arch=('x86_64')
url="https://github.com/JustArchiNET/ArchiSteamFarm"
license=("Apache License 2.0")
2020-01-07 19:40:16 +00:00
depends=(dotnet-runtime)
makedepends=("unzip" "curl" "jq")
2018-10-04 07:21:22 +00:00
noextract=('ASF-linux-x64.zip')
2020-01-07 19:40:16 +00:00
options=("!strip" "staticlibs")
2018-10-04 07:21:22 +00:00
source=(
"https://github.com/JustArchiNET/ArchiSteamFarm/releases/download/${pkgver}/ASF-linux-x64.zip"
"https://raw.githubusercontent.com/JustArchiNET/ArchiSteamFarm/${pkgver}/LICENSE-2.0.txt"
"ArchiSteamFarm-bin.desktop"
2018-10-04 07:21:22 +00:00
)
2021-03-30 22:06:17 +00:00
sha512sums=('b0837a135f264f6ae09b365c17a4b4e809d4a0c5357c3547349c652c2889fffb1b7289548b25db35f7c9164155815d3094e0c1158212ceb0b2307418109fe09c'
'31cc38066678c030e8f6378dcae59add64566a977f92983c3a4c929c9b76424291915ea4283e1367ece50b9537f8d51970aa8fd5ce063037aa3a7c45f0677d25'
'32aaead4aacc02c9c60afef74e04cb3a30afc4d76f5e6836a05e672344c7db66cf099849cb2bc9a04454a026f99c9f60d3d7186f4a496d4626fe1a3d40d4ecf6')
2020-01-07 19:40:16 +00:00
2018-10-04 07:21:22 +00:00
prepare() {
unzip ASF-linux-x64.zip -d "ASF"
2018-10-04 07:21:22 +00:00
}
package() {
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}" "LICENSE-2.0.txt"
install -Dm644 -t "${pkgdir}/usr/share/applications" "ArchiSteamFarm-bin.desktop"
2018-10-04 07:21:22 +00:00
install -d "${pkgdir}/opt/ArchiSteamFarm-bin"
cp -r "${srcdir}/ASF"/* "${pkgdir}/opt/ArchiSteamFarm-bin/"
install -Dm755 -t "${pkgdir}/opt/ArchiSteamFarm-bin" "${srcdir}/ASF/ArchiSteamFarm"
2018-10-04 07:21:22 +00:00
}