mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
91b31c2c77
* Changed comment headers to match my name and FreeBSD email Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11466
29 lines
648 B
Makefile
29 lines
648 B
Makefile
# Created by: Richard Gallamore <ultima@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= puush
|
|
PORTVERSION= 0.0.2
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= ultima@FreeBSD.org
|
|
COMMENT= Screen capture and Puush image-bin client
|
|
|
|
RUN_DEPENDS= gnome-screenshot:deskutils/gnome-screenshot \
|
|
curl:ftp/curl \
|
|
zenity:x11/zenity \
|
|
xclip:x11/xclip
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ultima1252
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/puush \
|
|
share/icons/puush.png
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/puush ${STAGEDIR}${PREFIX}/sbin/puush
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/icons
|
|
${CP} -R ${WRKSRC}/icon.png ${STAGEDIR}${PREFIX}/share/icons/puush.png
|
|
|
|
.include <bsd.port.mk>
|