forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bempc-0.11_p20160207.ebuild
59 lines (46 loc) · 1.17 KB
/
bempc-0.11_p20160207.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
COMMIT=783ea4e61cbfe54250e809498b1496d6cbd5afa1
inherit qmake-utils xdg-utils
DESCRIPTION="Qt5 MPD client with experimental UI"
HOMEPAGE="http://qt-apps.org/content/show.php?content=137091"
SRC_URI="https://sourceforge.net/code-snapshots/git/b/be/be-mpc/code.git/be-mpc-code-${COMMIT}.zip -> ${P}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
media-libs/libmpdclient
"
DEPEND="${RDEPEND}"
src_unpack() {
default
mv be-mpc-code-"${COMMIT}" "${A%.zip}" || die
}
src_prepare() {
default
# Install on live fs should be done by portage itself
sed -e 's/postinstall/#postinstall/g' \
-i be.mpc.pro
# Fix invalid desktop file
sed -e 's/Categories=Application;Qt;Audio;/Categories=Qt;AudioVideo;Audio;/' \
-i be.mpc.desktop
eqmake5 be.mpc.pro
}
src_install() {
emake install INSTALL_ROOT="${D}"
einstalldocs
}
pkg_postinst() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
}
pkg_postrm() {
xdg_desktop_database_update
xdg_mimeinfo_database_update
}