Advertisement
Guest User

Untitled

a guest
Feb 28th, 2022
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. # Maintainer: Rafael Fontenelle <rafaelff@gnome.org>
  2. # Contributor: Balló György <ballogyor+arch at gmail dot com>
  3.  
  4. pkgname=gnome-internet-radio-locator
  5. pkgver=12.0.9
  6. pkgrel=1
  7. pkgdesc="Easily find live radio programs based on geographical location of radio broadcasters on the Internet"
  8. arch=(x86_64)
  9. url="http://gnomeradio.org"
  10. license=(GPL3)
  11. depends=(libchamplain geoclue gst-plugins-base gst-plugins-bad)
  12. makedepends=(intltool itstool python)
  13. source=("https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz")
  14. sha256sums=('d84241ebcd4c9a22eda1def6e5add5cafe61ec050b986e58d1836a1f068229a0')
  15.  
  16. build() {
  17. cd $pkgname-$pkgver
  18. ./configure --prefix=/usr --with-recording
  19. make
  20. }
  21.  
  22. check(){
  23. cd $pkgname-$pkgver
  24. make check -k
  25. }
  26.  
  27. package(){
  28. cd $pkgname-$pkgver
  29. make DESTDIR="$pkgdir" install
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement