mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
43b0eb0cb0
Reassigning my ports back to the pool with the hope of freeing up to do more FreeBSD work in the future. Submitted by: glarkin
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# Created by: Greg Larkin <glarkin@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= feather
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= http://www.sourcehosting.net/freebsd/distfiles/ \
|
|
LOCAL/glarkin
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Python script for managing tarsnap backups
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>=0:${PORTSDIR}/devel/py-yaml \
|
|
tarsnap>=0:${PORTSDIR}/sysutils/tarsnap
|
|
|
|
USE_PYTHON= 2.5+
|
|
NO_BUILD= yes
|
|
NO_INSTALL= yes
|
|
STRIP=
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/feather ${PREFIX}/bin
|
|
@${INSTALL_DATA} ${WRKSRC}/feather.yaml.dist ${PREFIX}/etc
|
|
.if !defined(NOPORTDOCS)
|
|
@${INSTALL} -d ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
x-generate-tarball:
|
|
${SETENV} ${FETCH_ENV} ${FETCH_BINARY} -m -o ${PORTNAME}.tar.gz \
|
|
https://github.com/danrue/${PORTNAME}/tarball/master
|
|
target=`${TAR} -tvf ${PORTNAME}.tar.gz | head -n 1`; \
|
|
dir=`${ECHO} $${target} | ${AWK} '{print $$9}' | ${SED} -e 's|/$$||'`; \
|
|
${TAR} -zxf ${PORTNAME}.tar.gz; \
|
|
${RM} ${PORTNAME}.tar.gz; \
|
|
${MV} $${dir} ${PORTNAME}-${PORTVERSION}; \
|
|
${TAR} -zcf ${PORTNAME}-${PORTVERSION}.tar.gz ${PORTNAME}-${PORTVERSION}; \
|
|
${RM} -r ${PORTNAME}-${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|