2014-05-09 22:12:59 +00:00
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
|
|
|
|
PortGroup github 1.0
|
|
|
|
|
PortGroup xcode 1.0
|
|
|
|
|
|
2020-02-17 00:52:05 -08:00
|
|
|
github.setup whomwah qlstephen 1.5.1
|
2025-01-28 22:37:05 +11:00
|
|
|
# Change github.tarball_from to 'releases' or 'archive' next update
|
|
|
|
|
github.tarball_from tarball
|
2014-05-09 22:12:59 +00:00
|
|
|
name QLStephen
|
|
|
|
|
categories sysutils
|
|
|
|
|
|
|
|
|
|
license public-domain
|
2016-03-05 17:54:34 +00:00
|
|
|
maintainers nomaintainer
|
2014-05-09 22:12:59 +00:00
|
|
|
|
|
|
|
|
description A QuickLook plugin that lets you view plain text \
|
|
|
|
|
files without a file extension
|
2025-01-28 22:37:05 +11:00
|
|
|
long_description {*}${description}
|
2014-05-09 22:12:59 +00:00
|
|
|
|
2020-02-17 00:52:05 -08:00
|
|
|
checksums rmd160 14401c57852093917fc9814c0572745fba706547 \
|
|
|
|
|
sha256 84d795f713764647d6cb2d2ac1713ed4cd2a0769f7641ca7ff9745600d8b1958 \
|
|
|
|
|
size 22137
|
2014-05-09 22:12:59 +00:00
|
|
|
|
|
|
|
|
worksrcdir ${distname}/QuickLookStephenProject
|
|
|
|
|
|
|
|
|
|
destroot.violate_mtree yes
|
|
|
|
|
|
|
|
|
|
destroot {
|
|
|
|
|
xinstall -d ${destroot}/Library/QuickLook
|
|
|
|
|
file copy ${worksrcpath}/build/Release/${name}.qlgenerator ${destroot}/Library/QuickLook
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# force quicklook to reload plugins
|
|
|
|
|
post-activate {
|
|
|
|
|
system "qlmanage -r"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
post-deactivate {
|
|
|
|
|
system "qlmanage -r"
|
|
|
|
|
}
|