diff --git a/neofetch/trunk/PKGBUILD b/neofetch/trunk/PKGBUILD index 346e94e367d..8c8db07f9ac 100644 --- a/neofetch/trunk/PKGBUILD +++ b/neofetch/trunk/PKGBUILD @@ -3,12 +3,13 @@ pkgname=neofetch pkgver=7.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="A CLI system information tool written in BASH that supports displaying images." arch=('any') url="https://github.com/dylanaraps/neofetch" license=('MIT') depends=('bash') +makedepends=('git') backup=('etc/neofetch/config.conf') optdepends=( 'catimg: Display Images' @@ -25,11 +26,13 @@ optdepends=( 'xorg-xrandr: Resolution detection (Multi Monitor + Refresh rates)' 'xorg-xwininfo: See https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal' ) -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/dylanaraps/neofetch/archive/${pkgver}.tar.gz") -sha256sums=('58a95e6b714e41efc804eca389a223309169b2def35e57fa934482a6b47c27e7') +_commit="60d07dee6b76769d8c487a40639fb7b5a1a7bc85" +source=("git+https://github.com/dylanaraps/neofetch.git#commit=${_commit}?signed") +validpgpkeys=("7C20ADCD35D9797789B6BCC046D62DD9F1DE636E") # Dylan Araps +sha256sums=('SKIP') package() { - cd "${pkgname}-${pkgver}/" + cd "${pkgname}" make DESTDIR="$pkgdir" install install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md" }