summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 115d8a115f9307f951666ff3e3b4ca3bd406af09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: kojq <kojq@mailfence.com>

pkgname=dust-emu-bin
pkgver=0.0.0
pkgrel=1
pkgdesc='A Nintendo DS emulator written in Rust for desktop devices and the web, with debugging features and a focus on accuracy'
url=https://github.com/kelpsyberry/dust
source=(https://nightly.link/kelpsyberry/dust/workflows/build-release/main/Linux.zip)
license=(GPL-3.0)
arch=(x86_64)
conflicts=(dust-emu dust-emu-git)
provides=(dust-emu)
sha256sums=(SKIP)

prepare() {
  cd $srcdir
  tar -xf dust-desktop.tar.gz
}

package() {
  cd $srcdir
  install -Dm755 dust-desktop $pkgdir/usr/bin/dust-desktop
}