blob: 05951b172ed7a8c692ab686151c8dfe96e785a7d (
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
35
36
37
|
# New ports collection makefile for: binup
# Date created: 2 November 2005
# Whom: BSDUpdates <support@bsdupdates.com>
#
# $FreeBSD$
#
PORTNAME= binup
PORTVERSION= 1.1
CATEGORIES= sysutils
MASTER_SITES= https://bsdupdates.com/binup/version/${PORTVERSION}/
DISTNAME= binup-${OPSYS}-${OSREL:C/\..*//}-${PORTVERSION}
MAINTAINER= support@bsdupdates.com
COMMENT= BSDUpdates system update tool
ONLY_FOR_ARCHS= i386
NO_BUILD= yes
USE_BZIP2= yes
PLIST_FILES= libexec/binup/bspatch-static libexec/binup/pw-static sbin/binup
PLIST_DIRS= libexec/binup
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700000
IGNORE= does not support ${OPSYS}-${OSREL} at this time
.endif
do-install:
${MKDIR} ${PREFIX}/libexec/binup
${INSTALL_PROGRAM} ${WRKSRC}/bspatch-static ${PREFIX}/libexec/binup
${INSTALL_PROGRAM} ${WRKSRC}/pw-static ${PREFIX}/libexec/binup
${INSTALL_PROGRAM} ${WRKSRC}/binup ${PREFIX}/sbin
.include <bsd.port.post.mk>
|