Date: Tuesday, March 13, 2018 @ 22:47:18 Author: foxboron Revision: 307442
archrelease: copy trunk to community-any Added: neofetch/repos/community-any/ neofetch/repos/community-any/PKGBUILD (from rev 307441, neofetch/trunk/PKGBUILD) ----------+ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) Copied: neofetch/repos/community-any/PKGBUILD (from rev 307441, neofetch/trunk/PKGBUILD) =================================================================== --- community-any/PKGBUILD (rev 0) +++ community-any/PKGBUILD 2018-03-13 22:47:18 UTC (rev 307442) @@ -0,0 +1,33 @@ +# Maintainer: Morten Linderud <foxbo...@archlinux.org> +# Contributor: Dylan Araps <dylan.ar...@gmail.com> + +pkgname=neofetch +pkgver=3.3.0 +pkgrel=2 +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') +optdepends=( + 'feh: Wallpaper Display' + 'imagemagick: Image cropping / Thumbnail creation / Take a screenshot' + 'nitrogen: Wallpaper Display' + 'w3m: Display Images' + 'catimg: Display Images' + 'jp2a: Display Images' + 'libcaca: Display Images' + 'xdotool: See https://github.com/dylanaraps/neofetch/wiki/Images-in-the-terminal' + 'xorg-xdpyinfo: Resolution detection (Single Monitor)' + 'xorg-xprop: Desktop Environment and Window Manager' + '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=('4808e76bd81da3602cb5be7e01dfed8223b1109e2792755dd0d54126014ee696') + +package() { + cd "${pkgname}-${pkgver}/" + make DESTDIR="$pkgdir" install + install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md" +}