Cleanup for AUR publish

1. Change arch to 'any'
2. Remove broken symlink to source archive created by makepkg
3. Remove version file. There is already a version.json in the archive
This commit is contained in:
Balakrishnan Balasubramanian 2025-04-07 23:53:17 -04:00
parent 793ebed713
commit 99793c14ec
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
pkgbase = phanpy-bin
pkgdesc = A minimalistic opinionated Mastodon web client
pkgver = 2025.03.22.85d964f
pkgrel = 11
pkgrel = 1
url = https://github.com/cheeaun/phanpy/
arch = x86_64
arch = any
license = MIT
provides = phanpy
conflicts = phanpy

View File

@ -1,10 +1,11 @@
# Maintainer: Balakrishnan Balasubramanian <aur@balki.me>
#Maintainer: Bjoern Franke <bjo+aur@schafweide.org>
pkgname=phanpy-bin
_pkgver=2025.03.22.85d964f
pkgver=${_pkgver//-/.}
pkgrel=11
pkgrel=1
pkgdesc="A minimalistic opinionated Mastodon web client"
arch=('x86_64')
arch=('any')
url="https://github.com/cheeaun/phanpy/"
license=('MIT')
provides=('phanpy')
@ -16,7 +17,6 @@ package() {
cd ${srcdir}
install -d "${pkgdir}"/usr/share/webapps/phanpy/
cp -r * "${pkgdir}"/usr/share/webapps/phanpy/
echo "${pkgver}" > "${pkgdir}"/usr/share/webapps/phanpy/version
rm "${pkgdir}"/usr/share/webapps/phanpy/phanpy-dist.tar.gz
}