blob: a8605800dc59d68712b0fe791b1a2bbec95c80d6 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit versionator
BDATE="06_08_2015"
BUILD="build_50"
MY_PV="$(delete_all_version_separators)_${BDATE}_${BUILD}"
DESCRIPTION="Steinberg Virtual Studio Technology software development kit"
HOMEPAGE="http://www.steinberg.net/en/company/developers.html"
SRC_URI="http://www.steinberg.net/sdk_downloads/vstsdk${MY_PV}.zip"
LICENSE="VST3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
RESTRICT="mirror"
S=${WORKDIR}
src_prepare() {
mv "VST3 SDK" "VST3-SDK" || die
}
src_compile() { :; }
src_install() {
insinto /usr/share/${PN}
doins -r VST3-SDK
}
pkg_postinst() {
einfo "Please make sure to review the license agreement, which can be found at:"
einfo "${ROOT}usr/share/${PN}/VST3-SDK/doc/VST3_License_Agreement.html"
}
|