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.
gnustep-apps/pikopixel: initial commit
Package-Manager: Portage-2.3.5, Repoman-2.3.2
- Loading branch information
Showing
3 changed files
with
32 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 PikoPixel.Sources.1.0-b7.zip 944683 SHA256 000e0346a13ae481a523448b3a8ab5c646cc2a46a9e176db72e1b24be574f157 SHA512 e1f2d30dc7a07e0dab5e78a88568816475060d2aac1676782a5aed2fd6037b8e3284196050fb496c6d09bfe8f6445bc6c6c1eab1145679616f2cd68ad56b03aa WHIRLPOOL 50737a6b4499eb7079d0fcdbe6513c88ef4704687132c08aaddb080751f06d7b8f54b2b7c243a2420ac191d49fecee708fbdb58f5f4e6b736b0e6034a3f6f0cc |
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,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo GNUstep Project</name> | ||
</maintainer> | ||
<longdescription>a free application for drawing and editing pixel-art images</longdescription> | ||
</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,22 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
inherit gnustep-2 | ||
|
||
MY_P=${PN//p/P}.Sources.${PV/_beta/-b} | ||
DESCRIPTION="a free application for drawing & editing pixel-art images" | ||
HOMEPAGE="http://twilightedge.com/mac/pikopixel/" | ||
# Web hosting wants a proper User-Agent | ||
#SRC_URI="http://twilightedge.com/downloads/${MY_P}.zip" | ||
SRC_URI="http://dev.gentoo.org/~voyageur/distfiles/${MY_P}.zip" | ||
|
||
LICENSE="AGPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND=">=virtual/gnustep-back-0.25.0" | ||
RDEPEND="${DEPEND}" | ||
|
||
S=${WORKDIR}/${MY_P}/${PN//p/P} |