diff options
author | begin-theadventure | 2025-01-28 21:56:17 +0100 |
---|---|---|
committer | begin-theadventure | 2025-01-28 21:56:17 +0100 |
commit | 46f40bc3952fc70065b1bef82d6e5d9c83ebc088 (patch) | |
tree | 3d5274e42018d879c8a1dd7e7cac19742e0b075e | |
download | aur-46f40bc3952fc70065b1bef82d6e5d9c83ebc088.tar.gz |
Initial commit: r23.e53025d
-rw-r--r-- | .SRCINFO | 15 | ||||
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | PKGBUILD | 24 |
3 files changed, 42 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..819e042391af --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = elden-proton-git + pkgdesc = Noob friendly Elden Ring mod loader for linux/proton/steam (latest commit) + pkgver = r23.e53025d + pkgrel = 1 + url = https://github.com/Cloudef/elden-proton + arch = any + license = custom + makedepends = git + depends = bash + provides = elden-proton + conflicts = elden-proton + source = git+https://github.com/Cloudef/elden-proton + sha256sums = SKIP + +pkgname = elden-proton-git diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..1d65adf6de3a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +* +!PKGBUILD +!.SRCINFO diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..e2feadb47958 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,24 @@ +# Maintainer: begin-theadventure <begin-thecontact.ncncb at dralias dot com> + +pkgname=elden-proton-git +pkgver=r23.e53025d +pkgrel=1 +pkgdesc="Noob friendly Elden Ring mod loader for linux/proton/steam (latest commit)" +url="https://github.com/Cloudef/elden-proton" +license=('custom') +arch=('any') +depends=('bash') +makedepends=('git') +provides=("elden-proton") +conflicts=("elden-proton") +source=("git+$url") +sha256sums=('SKIP') + +pkgver() { + cd elden-proton + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +package() { + install -Dm755 elden-proton/elden-proton.bash "$pkgdir/usr/bin/elden-proton" +} |