osu-lazer-bin/PKGBUILD

46 lines
1.6 KiB
Bash
Raw Normal View History

2020-11-12 19:44:47 +01:00
## Maintainer: David Husička <contact@bydave.net>
pkgname=osu-lazer-bin
2021-03-23 15:47:15 +01:00
pkgver=2021.323.0
2020-11-12 19:44:47 +01:00
pkgrel=1
pkgdesc="The future of osu! and the beginning of an open era! Commonly known by the codename osu!lazer. Pew pew."
arch=('x86_64')
url="https://osu.ppy.sh"
license=('MIT' 'custom:CC-BY-NC 4.0')
groups=()
2021-02-07 13:24:50 +01:00
depends=(ffmpeg zlib libgl sdl2 fuse2)
2020-11-12 19:44:47 +01:00
makedepends=()
checkdepends=()
optdepends=()
provides=(osu osu-lazer)
conflicts=(osu osu-lazer)
replaces=()
backup=()
options=(!strip)
install=
changelog=
source=("$pkgname-$pkgver.AppImage::https://github.com/ppy/osu/releases/download/$pkgver/osu.AppImage"
"$pkgname.png::https://raw.githubusercontent.com/ppy/osu/master/assets/lazer.png"
"$pkgname-LICENCE.md::https://raw.githubusercontent.com/ppy/osu-resources/master/LICENCE.md"
"osu-lazer.desktop")
noextract=("$pkgname-$pkgver.AppImage")
2021-03-23 15:47:15 +01:00
sha256sums=("2c14723f4f883e6a45eb5163ad38e731a5e2c9236a320abdf8adbd247a311f7c"
2020-11-12 19:44:47 +01:00
"36f73cfe0a84cd65a8bb54fcde5a01c419b134bee4a88cc92eb4f33236343a10"
"30b914824784b6ba6b30a44b22bea4f3c6fbc10f3f0e74fde5ca76a92ef57244"
"f37168074db22cf8e898f08b3f67458e1708a8c4ae179fb14a916e74e12bec4e")
package() {
# Install image
install -Dm644 "${srcdir}"/"${pkgname}".png "${pkgdir}"/usr/share/pixmaps/osu-lazer.png
# Install license
install -Dm644 "${srcdir}"/"${pkgname}"-LICENCE.md "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENCE.md
# Install desktop file
install -Dm644 osu-lazer.desktop "${pkgdir}"/usr/share/applications/osu-lazer.desktop
# Install binary
install -Dm755 "${srcdir}"/"${pkgname}"-"${pkgver}".AppImage "${pkgdir}"/usr/bin/osu
}