forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'github/pr/622'.
- Loading branch information
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST yuicompressor-2.4.8.tar.gz 1254322 SHA256 199ed2e4a05330b72cc1802347e2ae449112bb955894d44f596c1ef7319167bf SHA512 cb955fc3677f930403f4f97aaad5d6ca5ec6ee834f464005ddfd8d83c4a532180859b72d55a4025b13f05a6a0146a1391d93668452e57035d4fc4f4d7f20d00b WHIRLPOOL 275ce13b4f61c85e610f16016a5b0f5ef75b04f0ff40463a148c8e037521b8a1f983f0b63bbc9c2ea7a14c46a5854d5d586e017518cda0493d4fb25a91d8c2e1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<herd>proxy-maintainers</herd> | ||
<maintainer> | ||
<email>[email protected]</email> | ||
<name>Tomas Mozes</name> | ||
<description>Proxy maintainer</description> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">yui/yuicompressor</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit java-pkg-2 java-ant-2 | ||
|
||
DESCRIPTION="JavaScript and CSS compressor" | ||
HOMEPAGE="http://yui.github.io/yuicompressor/" | ||
SRC_URI="https://github.com/yui/yuicompressor/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
DEPEND=">=virtual/jdk-1.6:*" | ||
RDEPEND=">=virtual/jre-1.6:*" | ||
|
||
src_compile(){ | ||
eant | ||
} | ||
|
||
src_install() { | ||
java-pkg_newjar "build/${P}.jar" "${PN}.jar" | ||
java-pkg_dolauncher "${PN}" | ||
} |