comparison xfce/parole/parole.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents ae55d9077f70
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="GPLv2" 21 PKGLICENSE="GPLv2"
22 PKGSUMMARY="Xfce simple multimedia player" 22 PKGSUMMARY="Xfce simple multimedia player"
23 PKGDOWNLOAD="http://archive.xfce.org/src/apps/$PKGNAME/${PKGVERSION%.*}/$PKGNAME-$PKGVERSION.tar.bz2" 23 PKGDOWNLOAD="http://archive.xfce.org/src/apps/$PKGNAME/${PKGVERSION%.*}/$PKGNAME-$PKGVERSION.tar.bz2"
24 PKGOPTIONS="MPRIS NLS NOTIFICATIONS TAGLIB TRAY" 24 PKGOPTIONS="MPRIS NLS NOTIFICATIONS TAGLIB TRAY"
25 PKGDEPENDS="graphics/cairo 25 PKGDEPENDS="cairo
26 graphics/gtk 26 gtk
27 graphics/libexif 27 libexif
28 lib/glib 28 glib
29 multimedia/gstreamer 29 gstreamer
30 multimedia/gst-plugins-base 30 gst-plugins-base
31 network/dbus 31 dbus
32 x11/libx11 32 libx11
33 xfce/libxfce4ui 33 libxfce4ui
34 xfce/libxfce4util 34 libxfce4util
35 xfce/xfconf" 35 xfconf"
36 36
37 : ${CHOST:=$(uname -m)-linux-musl} 37 : ${CHOST:=$(uname -m)-linux-musl}
38 : ${CBUILD:=$(uname -m)-linux-musl} 38 : ${CBUILD:=$(uname -m)-linux-musl}
39 : ${CC:=clang} 39 : ${CC:=clang}
40 : ${CFLAGS:=-O2} 40 : ${CFLAGS:=-O2}
53 else 53 else
54 with_mpris="--disable-mpris2-plugin" 54 with_mpris="--disable-mpris2-plugin"
55 fi 55 fi
56 56
57 if [ "$NLS" = "yes" ]; then 57 if [ "$NLS" = "yes" ]; then
58 PKGDEPENDS="core/gettext $PKGDEPENDS" 58 PKGDEPENDS="gettext $PKGDEPENDS"
59 with_nls="--enable-nls" 59 with_nls="--enable-nls"
60 else 60 else
61 with_nls="--disable-nls" 61 with_nls="--disable-nls"
62 fi 62 fi
63 63
64 if [ "$NOTIFICATIONS" = "yes" ]; then 64 if [ "$NOTIFICATIONS" = "yes" ]; then
65 PKGDEPENDS="desktop/libnotify $PKGDEPENDS" 65 PKGDEPENDS="libnotify $PKGDEPENDS"
66 with_notifications="--enable-notify-plugin" 66 with_notifications="--enable-notify-plugin"
67 else 67 else
68 with_notifications="--disable-notify-plugin" 68 with_notifications="--disable-notify-plugin"
69 fi 69 fi
70 70
71 if [ "$TAGLIB" = "yes" ]; then 71 if [ "$TAGLIB" = "yes" ]; then
72 PKGDEPENDS="audio/taglib $PKGDEPENDS" 72 PKGDEPENDS="taglib $PKGDEPENDS"
73 with_taglib="--enable-taglib" 73 with_taglib="--enable-taglib"
74 else 74 else
75 with_taglib="--disable-taglib" 75 with_taglib="--disable-taglib"
76 fi 76 fi
77 77