blob: 1408795e15b2353a68c35d195e09c39c9c10b5b8 (
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
29
30
31
32
33
|
# $NetBSD: Makefile,v 1.2 2012/10/23 17:19:18 asau Exp $
DISTNAME= wgetpaste-2.20
CATEGORIES= net www
MASTER_SITES= http://wgetpaste.zlin.dk/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://wgetpaste.zlin.dk/
COMMENT= Command line utility to upload to pastebin sites
LICENSE= public-domain
DEPENDS+= wget>=1.13.4:../../net/wget
INSTALLATION_DIRS= bin share/examples/wgetpaste etc
NO_BUILD= yes
CONF_FILES= ${PREFIX}/share/examples/wgetpaste/wgetpaste.conf ${PKG_SYSCONFDIR}/wgetpaste.conf
SUBST_CLASSES+= config
SUBST_SED.config+= -e "s,/etc/,${PKG_SYSCONFDIR}/,g"
SUBST_FILES.config+= wgetpaste
SUBST_STAGE.config= pre-install
SUBST_MESSAGE.config= Fixing path to global config files.
USE_TOOLS+= bash:run
REPLACE_BASH= wgetpaste
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/wgetpaste ${DESTDIR}${PREFIX}/bin/wgetpaste
${INSTALL_DATA} ${FILESDIR}/wgetpaste.conf ${DESTDIR}${PREFIX}/share/examples/wgetpaste/wgetpaste.conf
.include "../../mk/bsd.pkg.mk"
|