55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
|  | # Copyright 2016 Julian Ospald <hasufell@posteo.de> | ||
|  | # Distributed under the terms of the GNU General Public License v2 | ||
|  | 
 | ||
|  | require gtk-icon-cache | ||
|  | 
 | ||
|  | SUMMARY="An open-source jukebox for large collections of mp3/ogg/flac files" | ||
|  | HOMEPAGE="http://gmusicbrowser.org/" | ||
|  | DOWNLOADS="http://${PN}.org/download/${PNV}.tar.gz" | ||
|  | 
 | ||
|  | LICENCES="GPL-3" | ||
|  | SLOT="0" | ||
|  | PLATFORMS="~amd64 ~x86" | ||
|  | MYOPTIONS="" | ||
|  | 
 | ||
|  | DEPENDENCIES="
 | ||
|  |     build: | ||
|  |         sys-devel/gettext | ||
|  |     run: | ||
|  |         dev-lang/perl:* | ||
|  |         dev-perl/Gtk2-Perl | ||
|  |         dev-perl/MIME-Base64 | ||
|  |         net-misc/wget | ||
|  |     suggestion: | ||
|  |         media/mpv [[ description = [ audio backend via media/mpv ] ]] | ||
|  |         ( | ||
|  |             media-sound/flac123 | ||
|  |             media-sound/mpg123 | ||
|  |             media-sound/vorbis-tools | ||
|  |             sys-sound/alsa-utils | ||
|  |         ) [[ *description = [ alternative audio backend ] | ||
|  |              *group-name = [ alt-audio ] ]] | ||
|  |         ( | ||
|  |             dev-perl/GStreamer | ||
|  |             dev-perl/GStreamer-Interfaces | ||
|  |             media-plugins/gst-plugins-bad:0 | ||
|  |             media-plugins/gst-plugins-base:0.10 | ||
|  |             media-plugins/gst-plugins-good:0.10 | ||
|  |             media-plugins/gst-plugins-ugly:0.10 | ||
|  |         ) [[ *description = [ gstreamer based audio backend ] | ||
|  |              *group-name = [ gstreamer-audio ] ]] | ||
|  |         dev-perl/Net-DBus [[ description = [ for dbus support and mpris1/2 | ||
|  |                                              plugins ] ]] | ||
|  | "
 | ||
|  | 
 | ||
|  | src_install() { | ||
|  | 	emake \
 | ||
|  | 		DOCS="AUTHORS NEWS README" \
 | ||
|  | 		DESTDIR="${IMAGE}" \
 | ||
|  | 		iconsdir="${IMAGE}/usr/share/icons/hicolor/32x32/apps" \
 | ||
|  | 		liconsdir="${IMAGE}/usr/share/icons/hicolor/48x48/apps" \
 | ||
|  | 		miconsdir="${IMAGE}/usr/share/pixmaps" \
 | ||
|  | 		install | ||
|  | } | ||
|  | 
 |