blob: 4a1a8f64e57f8782378c3a98a912aee1fc183a44 (
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
|
PORTNAME= puremagic
PORTVERSION= 1.0.1
CATEGORIES= sysutils
PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX}
MAINTAINER= mdw@FreeBSD.org
COMMENT= Lua module that detects the mime type of file based on their contents
WWW= https://github.com/wbond/puremagic/
LICENSE= MIT
USES= lua:module
NO_BUILD= yes
USE_GITHUB= yes
GH_ACCOUNT= wbond
GH_PROJECT= puremagic
PLIST_FILES= ${LUA_MODSHAREDIR}/puremagic.lua
do-install:
@${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR}
${INSTALL_DATA} ${WRKSRC}/puremagic.lua ${STAGEDIR}${LUA_MODSHAREDIR}
.include <bsd.port.mk>
|