blob: 8e4354d55080a6671af023a60aa84d6e31ddfa1a (
plain) (
blame)
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
|
# Created by: kmoore@FreeBSD.org
# $FreeBSD$
PORTNAME= octopkg
PORTVERSION= 0.2.0
DISTVERSIONPREFIX= v
CATEGORIES= ports-mgmt
MAINTAINER= kmoore@FreeBSD.org
COMMENT= Graphical front-end to the FreeBSD pkg-ng package manager
LICENSE= LGPL20
LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= aarnt
USE_QT5= core concurrent gui network xml widgets quick concurrent \
buildtools_build
USES= qmake compiler:c++11-lib
PLIST_FILES= bin/${PORTNAME} share/pixmaps/octopi_green.png
DESKTOP_ENTRIES= "OctoPkg" "A powerful pkgng front-end" \
"${PREFIX}/share/pixmaps/octopi_green.png" \
"${PORTNAME}" "System;" false
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/resources/images/octopi_green.png \
${STAGEDIR}${PREFIX}/share/pixmaps/
.include <bsd.port.mk>
|