phanpy-bin_aur/PKGBUILD

23 lines
671 B
Bash
Raw Normal View History

2024-11-07 18:49:09 -05:00
#Maintainer: Bjoern Franke <bjo+aur@schafweide.org>
pkgname=phanpy-bin
2024-12-01 12:10:48 -05:00
_pkgver=2024.11.22.8f048af
2024-11-07 18:49:09 -05:00
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="A minimalistic opinionated Mastodon web client"
arch=('x86_64')
url="https://github.com/cheeaun/phanpy/"
license=('MIT')
provides=('phanpy')
conflicts=('phanpy')
source=("https://github.com/cheeaun/phanpy/releases/download/${_pkgver}/phanpy-dist.tar.gz")
2024-12-01 12:10:48 -05:00
sha256sums=('311c8d11202cd377f051c66897ffa398dd5871d2fe78f3db9ee0dea35de66d9d')
2024-11-07 18:49:09 -05:00
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
}