Package Details: samrewritten-git r236.3e8d088-1

Git Clone URL: https://aur.archlinux.org/samrewritten-git.git (read-only, click to copy)
Package Base: samrewritten-git
Description: A Steam Achievement Manager For Linux.
Upstream URL: https://github.com/PaulCombal/SamRewritten
Keywords: achievement manager rewritten sam steam
Licenses: GPL3
Submitter: None
Maintainer: JudgeManganese (nomis6432)
Last Packager: JudgeManganese
Votes: 19
Popularity: 0.34
First Submitted: 2019-10-21 00:40 (UTC)
Last Updated: 2022-01-23 18:49 (UTC)

Dependencies (11)

Required by (0)

Sources (1)

Latest Comments

« First ‹ Previous 1 2

<deleted-account> commented on 2019-10-20 21:16 (UTC)

Yeah fair enough.

The PKGBUILD could still be modified to only include what is needed, see https://github.com/PaulCombal/SamRewritten/pull/15#issuecomment-544293257

nomis6432 commented on 2019-10-20 20:58 (UTC)

telans: Removing this package will result in everyone having download this package to not be able to find updates so I'd prefer not to. I also don't see why the package should be renamed. I wasn't aware about the beta-ipc branch. This seems interesting but I think it's better to keep the main git package based on the master since this should be more stable. However it could be handy for people to have a choice. You could make a -beta-git AUR package which is based on the beta branch if you want to.

<deleted-account> commented on 2019-10-20 20:46 (UTC)

Would you consider having this package deleted / renamed in favour of it being called samrewritten-git?

I've modified this PKGBUILD to use the beta-ipc branch, perhaps consider using it?

pkgname="samrewritten-git"
_pkgname="SamRewritten"
pkgver=r58.b13cdcf
pkgrel=1
pkgdesc="A Steam Achievement Manager For Linux."
arch=("any")
url="https://github.com/PaulCombal/SamRewritten"
license=("GPL3")
depends=("steam" "yajl" "gtk3" "glibc")
makedepends=("git")
conflicts=("sam-rewritten-git")
source=("git+https://github.com/PaulCombal/SamRewritten.git#branch=beta-ipc")
md5sums=("SKIP")

pkgver() {
    cd ${_pkgname}
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
    cd ${_pkgname}
    ./make.sh
}

package() {  
    install -dm755 "${pkgdir}/usr/lib/"
    cp -r ${_pkgname} "${pkgdir}/usr/lib/"
    install -dm755 "${pkgdir}/usr/bin"
    ln -s "${pkgdir}/usr/lib/${_pkgname}/bin/launch.sh" "${pkgdir}/usr/bin/samrewritten"

    rm -rf ${pkgdir}/usr/lib/${_pkgname}/{.git*,.vscode,bin/test,src,steam/*.*}
}