Ticket #32150: Portfile

File Portfile, 982 bytes (added by vishketan@…, 12 years ago)

Apel portfile

Line 
1# -*- 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
2# $Id$
3
4PortSystem 1.0
5name            emacs-apel
6version         10.8
7categories      www
8maintainers     vishketan
9platforms       darwin
10supported_archs noarch
11
12description     APEL stands for \"A Portable Emacs Library\".
13long_description        \
14    APEL (A Portable Emacs Library) is a library to support to write portable Emacs Lisp programs.
15   
16homepage   http://kanji.zinbun.kyoto-u.ac.jp/~tomo/elisp/APEL/
17master_sites  ${homepage}
18
19fetch.type          git
20git.url             https://github.com/wanderlust/apel.git
21
22depends_lib     port:emacs
23
24build.cmd make EMACS=${prefix}/bin/emacs PREFIX=${destroot}${prefix}
25
26variant emacs_app description "If your Emacs is emacs-app" {
27        depends_lib-append      port:emacs-app
28        depends_lib-delete      port:emacs
29    build.cmd make EMACS=${applications_dir}/Emacs.app/Contents/MacOS/Emacs PREFIX=${destroot}${prefix}
30
31}
32
33build.target
34
35use_configure no