initial commit
This commit is contained in:
commit
7576d77b18
3 changed files with 50 additions and 0 deletions
31
PKGBUILD
Normal file
31
PKGBUILD
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
# Maintainer: Felix Bühler <account at buehler dot rocks>
|
||||
|
||||
pkgname=newsflash-git
|
||||
_pkgname=news_flash_gtk
|
||||
pkgver=402.510b8c6
|
||||
pkgrel=1
|
||||
pkgdesc="The spiritual successor to FeedReader"
|
||||
arch=(any)
|
||||
url="https://gitlab.com/news-flash/news_flash_gtk"
|
||||
license=(GPL3)
|
||||
depends=()
|
||||
makedepends=(rust cargo meson)
|
||||
source=("git+https://gitlab.com/news-flash/news_flash_gtk.git")
|
||||
sha512sums=("SKIP")
|
||||
|
||||
pkgver() {
|
||||
cd "${_pkgname}"
|
||||
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "${_pkgname}"
|
||||
rm -rf _build
|
||||
arch-meson _build
|
||||
ninja -C _build
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${_pkgname}"
|
||||
env DESTDIR="$pkgdir" ninja -C _build install
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue