-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix crashing on beatmaps with video, pretty PKGBUILD
reference: ppy/osu#17345 (comment)
- Loading branch information
Tuhana GAYRETLİ
committed
Apr 20, 2022
1 parent
c3d12fb
commit 2a5243f
Showing
3 changed files
with
40 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,47 @@ | ||
## Maintainer: David Husička <[email protected]> | ||
## Contributor: Tyler Nelson <[email protected]> | ||
# Maintainer: David Husička <[email protected]> | ||
# Co-maintainer: Tuhana GAYRETLİ <tuhana at tuta dot io> | ||
# Contributor: Tyler Nelson <[email protected]> | ||
|
||
pkgname=osu-lazer-bin | ||
_pkgname=${pkgname%-bin} | ||
pkgver=2022.418.0 | ||
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') | ||
arch=("x86_64") | ||
url="https://osu.ppy.sh" | ||
license=('MIT' 'custom:CC-BY-NC 4.0') | ||
groups=() | ||
depends=(ffmpeg zlib libgl fuse2 osu-mime) | ||
makedepends=() | ||
checkdepends=() | ||
optdepends=() | ||
license=("MIT" "custom:CC-BY-NC 4.0") | ||
depends=( | ||
ffmpeg4.4 | ||
zlib | ||
libgl | ||
fuse2 | ||
osu-mime | ||
) | ||
provides=(osu-lazer) | ||
conflicts=(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") | ||
sha256sums=("b746bd679ee2cdb624da6c1202c0a3e6152adb63be8db99b9f62a6c67674bd88" | ||
"36f73cfe0a84cd65a8bb54fcde5a01c419b134bee4a88cc92eb4f33236343a10" | ||
"30b914824784b6ba6b30a44b22bea4f3c6fbc10f3f0e74fde5ca76a92ef57244" | ||
"09a894825e61bbf27225e596820b23f3ddc83fd13904395e925456e08d690bea") | ||
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" | ||
) | ||
noextract=("osu.AppImage") | ||
sha256sums=( | ||
"b746bd679ee2cdb624da6c1202c0a3e6152adb63be8db99b9f62a6c67674bd88" | ||
"36f73cfe0a84cd65a8bb54fcde5a01c419b134bee4a88cc92eb4f33236343a10" | ||
"30b914824784b6ba6b30a44b22bea4f3c6fbc10f3f0e74fde5ca76a92ef57244" | ||
"77ace2dca8f81966222eb7cceea4990cc04043b9b4b54991ff8148fc47123c76" | ||
) | ||
|
||
package() { | ||
# Install image | ||
install -Dm644 "${srcdir}"/"${pkgname}".png "${pkgdir}"/usr/share/pixmaps/osu-lazer.png | ||
cd "$srcdir" | ||
|
||
# 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-lazer | ||
# Install pixmap and binary | ||
install -Dm644 lazer.png "$pkgdir/usr/share/pixmaps/osu-lazer.png" | ||
install -Dm755 osu.AppImage "$pkgdir/usr/bin/osu-lazer" | ||
|
||
# Install desktop and license file | ||
install -Dm644 -t "$pkgdir/usr/share/applications" osu-lazer.desktop | ||
install -Dm644 -t "$pkgdir/usr/share/licenses/$_pkgname" LICENCE.md | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters