2024-03-31 16:44:33 +02:00
|
|
|
# Maintainer: exu <aur _a_ frm01 _d_ net>
|
2023-05-10 20:23:10 +02:00
|
|
|
|
|
|
|
pkgname=feishin-bin
|
|
|
|
pkgdesc='Rewrite of Sonixd'
|
2024-05-10 09:41:33 +02:00
|
|
|
pkgver=0.7.1
|
2023-11-18 17:35:31 +01:00
|
|
|
pkgrel=1
|
2023-12-14 19:27:36 +01:00
|
|
|
arch=('x86_64' 'aarch64')
|
2023-05-10 20:23:10 +02:00
|
|
|
url='https://github.com/jeffvli/feishin'
|
|
|
|
license=('GPL3')
|
|
|
|
depends=('mpv') # TODO check node requirements
|
|
|
|
provides=("${pkgname%-bin}")
|
|
|
|
conflicts=("${pkgname%-bin}")
|
2023-12-14 19:27:36 +01:00
|
|
|
_filename=Feishin-${pkgver//_/-}-linux
|
|
|
|
source=("feishin.desktop")
|
|
|
|
source_x86_64=("https://github.com/jeffvli/feishin/releases/download/v${pkgver//_/-}/${_filename}-x64.tar.xz")
|
|
|
|
source_aarch64=("https://github.com/jeffvli/feishin/releases/download/v${pkgver//_/-}/${_filename}-arm64.tar.xz")
|
|
|
|
sha256sums=('ef112b1a9ef80d8bf27f721fdbb12de0a195da4e464dbf27282503ba398bef8d')
|
2024-05-10 09:41:33 +02:00
|
|
|
sha256sums_x86_64=('e5274bc638bede1060c4555f0076f7ca131ca3e032c88a61403f246e85f0c7d7')
|
|
|
|
sha256sums_aarch64=('f0ac75d8a5f5ad3074ed62d58da6e0cdd45e4a50312b58f3dcd7ab2bbf7ac6df')
|
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}
|
2023-12-14 19:27:36 +01:00
|
|
|
# HACK rename package correctly
|
|
|
|
if [ $CARCH == "x86_64" ]; then
|
2023-12-14 19:29:22 +01:00
|
|
|
mv ${_filename}-x64.tar.xz ${_filename}-$CARCH.tar.xz
|
2023-12-14 19:27:36 +01:00
|
|
|
elif [ $CARCH == "aarch64" ]; then
|
2023-12-14 19:29:22 +01:00
|
|
|
mv ${_filename}-arm64.tar.xz ${_filename}-$CARCH.tar.xz
|
2023-12-14 19:27:36 +01:00
|
|
|
fi
|
2023-05-10 20:23:10 +02:00
|
|
|
# extract files to target
|
2023-12-14 19:27:36 +01:00
|
|
|
tar -xf ${_filename}-$CARCH.tar.xz -C "$pkgdir/usr/share/feishin" --strip-components=1
|
2023-05-10 20:23:10 +02:00
|
|
|
# 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/"
|
|
|
|
}
|