summaryrefslogtreecommitdiff
blob: 4dbbc416dc0520e7bb76bf501450644c209f7649 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit java-pkg-2 versionator

DESCRIPTION="JDBC driver for Microsoft SQL Server"
HOMEPAGE="https://github.com/Microsoft/mssql-jdbc"
SRC_URI="https://github.com/Microsoft/mssql-jdbc/releases/download/v${PV}/mssql-jdbc-${PV}.jre8.jar"

KEYWORDS="~amd64 ~x86"
LICENSE="MIT"
SLOT="4.2"

DEPEND=""
RDEPEND=">=virtual/jre-1.8"

S="${WORKDIR}"

src_unpack() {
	:
}

src_install() {
	java-pkg_newjar "${DISTDIR}/${A}"
}