2022-04-20 16:54:29 +02:00
|
|
|
# Maintainer: David Husička <contact@bydave.net>
|
|
|
|
# Contributor: Tyler Nelson <neo@cybercat.cc>
|
2022-04-20 17:34:34 +02:00
|
|
|
# Contributor: Tuhana GAYRETLİ <tuhana at tuta dot io>
|
2020-11-12 19:44:47 +01:00
|
|
|
|
|
|
|
pkgname=osu-lazer-bin
|
2022-04-20 16:54:29 +02:00
|
|
|
_pkgname=${pkgname%-bin}
|
2022-04-19 19:09:12 +02:00
|
|
|
pkgver=2022.418.0
|
2022-04-20 17:32:26 +02:00
|
|
|
pkgrel=3
|
2020-11-12 19:44:47 +01:00
|
|
|
pkgdesc="The future of osu! and the beginning of an open era! Commonly known by the codename osu!lazer. Pew pew."
|
2022-04-20 16:54:29 +02:00
|
|
|
arch=("x86_64")
|
2020-11-12 19:44:47 +01:00
|
|
|
url="https://osu.ppy.sh"
|
2022-04-20 16:54:29 +02:00
|
|
|
license=("MIT" "custom:CC-BY-NC 4.0")
|
|
|
|
depends=(
|
|
|
|
ffmpeg4.4
|
|
|
|
zlib
|
|
|
|
libgl
|
|
|
|
fuse2
|
|
|
|
osu-mime
|
|
|
|
)
|
2021-03-27 12:42:48 +01:00
|
|
|
provides=(osu-lazer)
|
|
|
|
conflicts=(osu-lazer)
|
2020-11-12 19:44:47 +01:00
|
|
|
options=(!strip)
|
2022-04-20 16:54:29 +02:00
|
|
|
source=(
|
|
|
|
"https://github.com/ppy/osu/releases/download/$pkgver/osu.AppImage"
|
|
|
|
"https://raw.githubusercontent.com/ppy/osu/master/assets/lazer.png"
|
|
|
|
"https://raw.githubusercontent.com/ppy/osu-resources/master/LICENCE.md"
|
|
|
|
"osu-lazer.desktop"
|
2022-04-20 17:32:26 +02:00
|
|
|
"osu-lazer"
|
2022-04-20 16:54:29 +02:00
|
|
|
)
|
|
|
|
noextract=("osu.AppImage")
|
|
|
|
sha256sums=(
|
|
|
|
"b746bd679ee2cdb624da6c1202c0a3e6152adb63be8db99b9f62a6c67674bd88"
|
|
|
|
"36f73cfe0a84cd65a8bb54fcde5a01c419b134bee4a88cc92eb4f33236343a10"
|
|
|
|
"30b914824784b6ba6b30a44b22bea4f3c6fbc10f3f0e74fde5ca76a92ef57244"
|
|
|
|
"77ace2dca8f81966222eb7cceea4990cc04043b9b4b54991ff8148fc47123c76"
|
2022-04-20 17:32:26 +02:00
|
|
|
"a9a2ea43849e9cb94d40f8668406078b619e96d3b66fc5bce112d9b0e4d6c8a0"
|
2022-04-20 16:54:29 +02:00
|
|
|
)
|
2020-11-12 19:44:47 +01:00
|
|
|
|
|
|
|
package() {
|
2022-04-20 16:54:29 +02:00
|
|
|
cd "$srcdir"
|
2020-11-12 19:44:47 +01:00
|
|
|
|
2022-04-20 17:32:26 +02:00
|
|
|
# Install binary and launch script
|
|
|
|
install -Dm755 -t "$pkgdir/opt/osu-lazer" osu.AppImage
|
|
|
|
install -Dm755 -t "$pkgdir/usr/bin" osu-lazer
|
2020-11-12 19:44:47 +01:00
|
|
|
|
2022-04-20 17:32:26 +02:00
|
|
|
# Install pixmap, desktop and license file
|
|
|
|
install -Dm644 lazer.png "$pkgdir/usr/share/pixmaps/osu-lazer.png"
|
2022-04-20 16:54:29 +02:00
|
|
|
install -Dm644 -t "$pkgdir/usr/share/applications" osu-lazer.desktop
|
|
|
|
install -Dm644 -t "$pkgdir/usr/share/licenses/$_pkgname" LICENCE.md
|
2020-11-12 19:44:47 +01:00
|
|
|
}
|