blob: 7d0de9d68dea6a38067af06f0ea82f8762a03d78 (
plain)
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
|
# Created by: Christopher Key <cjk32@cam.ac.uk>
# $FreeBSD$
PORTNAME= genpuid
PORTVERSION= 1.4
CATEGORIES= audio linux
MASTER_SITES= http://www.spicefly.com/files/
PKGNAMEPREFIX= linux-
DISTNAME= ${PORTNAME}_linux_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Application for generating MusicIP puids
USES= linux tar:tgz
NO_BUILD= yes
IA32_BINARY_PORT= yes
PLIST_FILES= bin/genpuid bin/mipcore libexec/mipcore
do-install:
${BRANDELF} -t Linux ${WRKDIR}/${PORTNAME}-${PORTVERSION}/genpuid
${BRANDELF} -t Linux ${WRKDIR}/${PORTNAME}-${PORTVERSION}/mipcore
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/genpuid ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME}-${PORTVERSION}/mipcore ${STAGEDIR}${PREFIX}/libexec
${LN} -fhs ${PREFIX}/libexec/mipcore ${STAGEDIR}${PREFIX}/bin/mipcore
.include <bsd.port.mk>
|