Advertisement
Guest User

Fix neofetch md5

a guest
Mar 17th, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.92 KB | None | 0 0
  1. # Maintainer: Dylan Araps <dyl@tfwno.gf>
  2. pkgname=neofetch
  3. _pkgname=neofetch
  4. pkgver=1.5
  5. pkgrel=1
  6. pkgdesc="CLI script to show your system's info and display an image using w3m."
  7. arch=('any')
  8. url="https://github.com/dylanaraps/$pkgname"
  9. license=('MIT')
  10. provides=($_pkgname)
  11. conflicts=($_pkgname ${pkgname}-git)
  12. depends=('bash' 'xorg-xprop')
  13. optdepends=(
  14.   'cmus: Current Song'
  15.   'feh: Wallpaper Display'
  16.   'imagemagick: Image cropping / Thumbnail creation'
  17.   'mpc: Current Song'
  18.   'moc: Current Song'
  19.   'nitrogen: Wallpaper Display'
  20.   'scrot: Take a screenshot'
  21.   'w3m: Display Images'
  22.   'xorg-xdpyinfo: Resolution Detection'
  23. )
  24. source=("https://github.com/dylanaraps/${pkgname}/archive/${pkgver}.tar.gz")
  25. md5sums=('2ff635052076c880aa95d40b51a58e9b')
  26.  
  27. package() {
  28.   cd "$srcdir/$pkgname-$pkgver/"
  29.   make DESTDIR="${pkgdir}" install
  30.   install -D -m644 LICENSE.md "$pkgdir/usr/share/licenses/${pkgname}/LICENSE.md"
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement