diff options
author | leot <leot@pkgsrc.org> | 2018-09-17 14:33:35 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-09-17 14:33:35 +0000 |
commit | 11b469fec5b21b927d29e14e1bf683ce85b48a1d (patch) | |
tree | cc6f3b42e8bbb2ef56d98ed0067e4935d710fc01 /filesystems/fuse-unionfs/Makefile | |
parent | f712ab4dd29116a993c2a93f20d23cd9228e7e5b (diff) | |
download | pkgsrc-11b469fec5b21b927d29e14e1bf683ce85b48a1d.tar.gz |
fuse-unionfs: Simplify the package a bit
- MASTER_SITE_GITHUB only needs the repository owner username, adjust it in
DISTNAME in order to avoid DIST_SUBDIR and WRKSRC redefinition
- Add LICENSE
- Append to USE_TOOLS
- Both INSTALLATION_DIRS and pre-install target are not needed because it is
done via Makefile (needed a little adjustements of patch-Makefile
`install -d' of ${MANDIR})
Last item discussed with <maya> (any possible regression is mine though!)
Diffstat (limited to 'filesystems/fuse-unionfs/Makefile')
-rw-r--r-- | filesystems/fuse-unionfs/Makefile | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/filesystems/fuse-unionfs/Makefile b/filesystems/fuse-unionfs/Makefile index c6e331cf533..330af69afc8 100644 --- a/filesystems/fuse-unionfs/Makefile +++ b/filesystems/fuse-unionfs/Makefile @@ -1,30 +1,23 @@ -# $NetBSD: Makefile,v 1.7 2018/09/17 14:03:08 maya Exp $ -# +# $NetBSD: Makefile,v 1.8 2018/09/17 14:33:35 leot Exp $ -DISTNAME= v2.0 -DIST_SUBDIR= ${PKGBASE} -PKGNAME= fuse-unionfs-${DISTNAME:S/v//} +DISTNAME= unionfs-fuse-2.0 +PKGNAME= ${DISTNAME:S/unionfs-fuse/fuse-unionfs/} CATEGORIES= filesystems -MASTER_SITES= ${MASTER_SITE_GITHUB:=rpodgorny/unionfs-fuse/archive/} +MASTER_SITES= ${MASTER_SITE_GITHUB:=rpodgorny/} +GITHUB_PROJECT= unionfs-fuse +GITHUB_TAG= v${PKGVERSION_NOREV} MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/rpodgorny/unionfs-fuse COMMENT= FUSE-based union filesystem +LICENSE= modified-bsd BUILD_TARGET= build -USE_TOOLS= gmake pkg-config bash:run -WRKSRC= ${WRKDIR}/unionfs-fuse-${DISTNAME:S/v//} +USE_TOOLS+= gmake pkg-config bash:run REPLACE_BASH+= mount.unionfs MAKE_ENV+= MANDIR=${PKGMANDIR} -INSTALLATION_DIRS= bin ${PKGMANDIR}/man8 .include "../../mk/fuse.buildlink3.mk" - -pre-install: - mkdir -p ${DESTDIR}${PREFIX}/bin - mkdir -p ${DESTDIR}${PREFIX}/sbin - mkdir -p ${DESTDIR}${PREFIX}${PKGMANDIR}/man8 - .include "../../mk/bsd.pkg.mk" |