feishin-bin/PKGBUILD

32 lines
1.2 KiB
Bash
Raw Normal View History

2023-05-10 20:23:10 +02:00
# Maintainer: RealStickman <mrc+aur@frm01.net>
pkgname=feishin-bin
pkgdesc='Rewrite of Sonixd'
2023-10-31 17:25:13 +01:00
pkgver=0.5.0
2023-05-10 20:23:10 +02:00
pkgrel=1
arch=('x86_64')
url='https://github.com/jeffvli/feishin'
license=('GPL3')
depends=('mpv') # TODO check node requirements
provides=("${pkgname%-bin}")
conflicts=("${pkgname%-bin}")
_filename=Feishin-${pkgver//_/-}-linux-x64.tar.xz
source=("feishin.desktop"
"https://github.com/jeffvli/feishin/releases/download/v${pkgver//_/-}/${_filename}")
sha256sums=('bb664e5e807946fce7d02f14231f8830fac146b4d6641165b2e7cae7eeb1839f'
2023-10-31 17:25:13 +01:00
'773bd8f914278b30fae6073875218f33197dec005161d97ea67719ebcec003b1')
2023-05-10 20:23:10 +02:00
package() {
# create target file structure
mkdir -p "$pkgdir/usr/bin"
mkdir -p "$pkgdir/usr/share/"{feishin,pixmaps,applications}
# extract files to target
tar -xf ${_filename} -C "$pkgdir/usr/share/feishin" --strip-components=1
# install icon
2023-09-26 17:44:32 +02:00
install -Dm644 "$pkgdir/usr/share/feishin/resources/assets/icons/icon.png" "$pkgdir/usr/share/pixmaps/${pkgname%-bin}.png"
2023-05-10 20:23:10 +02:00
# symlink executable to "/usr/bin/feishin"
ln -s /usr/share/feishin/feishin "${pkgdir}/usr/bin/feishin"
# install desktop entry
install -Dm644 feishin.desktop "$pkgdir/usr/share/applications/"
}