Add 'rcedit-bin/' from commit 'da5e91ba5e6a939f5d508d368aad5632b6add82a'

git-subtree-dir: rcedit-bin
git-subtree-mainline: 78ea923664
git-subtree-split: da5e91ba5e
This commit is contained in:
Manuel 2024-04-11 18:49:15 +02:00
commit 77e00bb24c
4 changed files with 64 additions and 0 deletions

19
rcedit-bin/.SRCINFO Normal file
View File

@ -0,0 +1,19 @@
pkgbase = rcedit-bin
pkgdesc = Command line tool to edit resources of windows exe files
pkgver = 2.0.0
pkgrel = 3
url = https://github.com/electron/rcedit/
arch = any
license = MIT
depends = wine
provides = rcedit
conflicts = rcedit
conflicts = rcedit-git
source = https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe
source = https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE
source = rcedit
sha256sums = 3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a
sha256sums = 224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f
sha256sums = e599937ebd901f89899794ed78f1ca8fc6348efd996600f6c074cf39ef3a625e
pkgname = rcedit-bin

14
rcedit-bin/.gitignore vendored Normal file
View File

@ -0,0 +1,14 @@
*.tar
*.tar.*
*.jar
*.exe
*.msi
*.zip
*.tgz
*.log
*.log.*
*.sig
pkg/
src/
LICENSE

27
rcedit-bin/PKGBUILD Normal file
View File

@ -0,0 +1,27 @@
# Maintainer: jdigi78 <jdigiovanni78 at gmail dot com>
pkgname=rcedit-bin
pkgver=2.0.0
pkgrel=3
source=("https://github.com/electron/rcedit/releases/download/v$pkgver/rcedit-x64.exe"
"https://raw.githubusercontent.com/electron/rcedit/b807b34a644c86c0b0d89c7f073967e79202731a/LICENSE"
"rcedit")
sha256sums=('3e7801db1a5edbec91b49a24a094aad776cb4515488ea5a4ca2289c400eade2a'
'224fcc506ef97afd088b487edab374abcad7e3d4de55fb8cce4f04328397213f'
'e599937ebd901f89899794ed78f1ca8fc6348efd996600f6c074cf39ef3a625e')
pkgdesc='Command line tool to edit resources of windows exe files'
arch=('any')
url='https://github.com/electron/rcedit/'
license=('MIT')
depends=('wine')
provides=('rcedit')
conflicts=('rcedit' 'rcedit-git')
package() {
install -Dm755 "rcedit-x64.exe" "$pkgdir/opt/rcedit/rcedit-x64.exe"
install -Dm755 "rcedit" "$pkgdir/usr/bin/rcedit"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

4
rcedit-bin/rcedit Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
export WINEDEBUG=-all
export DISPLAY=""
exec wine /opt/rcedit/rcedit-x64.exe "$@"