blob: 24fe7985d32724ccfde852f8bb1d588633d3c2a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: decryptedchaos <nixgod@gmail.com>
_pkgname="redot"
pkgname=${_pkgname}-bin
pkgver=4.3.stable
pkgrel=2
pkgdesc="A multi-platform 2D and 3D game engine"
arch=('x86_64')
url="https://github.com/Redot-Engine/redot-engine"
license=('MIT')
depends=(embree3 freetype2 graphite harfbuzz harfbuzz-icu libglvnd libspeechd
libsquish libtheora libvorbis libwebp libwslay libxcursor libxi
libxinerama libxrandr mbedtls2 miniupnpc pcre2)
optdepends=('pipewire-alsa: for audio support'
'pipewire-pulse: for audio support')
source=("https://github.com/Redot-Engine/redot-engine/releases/download/redot-4.3-stable/Redot_v4.3-stable_linux.x86_64.zip")
sha256sums=('8bd4c52fa673bfb566c9ebc8da483f444c37625afaad48417f10ec3ee38d65fe')
package() {
cp ../Redot.desktop ${srcdir}
cp ../icon.png ${srcdir}
cp ../LICENSE.txt ${srcdir}
cd "$srcdir"
install -Dm644 Redot.desktop ${pkgdir}/usr/share/applications/Redot.desktop
install -Dm644 icon.png ${pkgdir}/usr/share/pixmaps/Redot.png
install -D -m755 Redot_v4.3-stable_linux.${arch} ${pkgdir}/usr/bin/redot
install -D -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/"${pkgname}"/LICENSE
}
|