blob: 9f58a720bb42be63c2de879f86fe10bcff009a2d (
plain)
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
|
EAPI=8
HOMEPAGE="https://github.com/mopidy/libspotify-archive"
SRC_URI="https://github.com/mopidy/libspotify-archive/raw/master/${P}-Linux-x86_64-release.tar.gz"
S="${WORKDIR}/${P}-Linux-x86_64-release"
SLOT="0"
KEYWORDS="amd64"
PATCHES=(
"${FILESDIR}/destdir.patch"
)
src_compile() {
true
}
src_install() {
emake install DESTDIR=${D}/usr LIB=lib64
}
src_uninstall() {
emake install DESTDIR=${D}/usr LIB=lib64
}
|