Ticket #42748: Portfile

File Portfile, 1.1 KB (added by dliessi (Davide Liessi), 10 years ago)
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
5PortGroup           python 1.0
6PortGroup           github 1.0
7
8set package_name    python-ly
9set package_version 0.4
10github.setup        wbsoft frescobaldi ${package_name}-${package_version}
11name                py-${package_name}
12version             ${package_version}
13python.versions     26 27 32 33
14maintainers         gmail.com:davide.liessi openmaintainer
15description         Tool and library for manipulating LilyPond files
16long_description    The ${package_name} package provides a Python library \
17                    and a commandline tool that can be used to parse and \
18                    manipulate LilyPond source files.
19platforms           darwin
20supported_archs     noarch
21license             GPL-2+
22
23checksums           rmd160  d1732b8d49343847cf43e1c27e0289dd5dbc1caf \
24                    sha256  ffa8be8a0755cf3cd6de43149068a33472416b997ac817bf63ca1808912d4ef2
25
26build {}
27
28pre-destroot {
29    worksrcdir          ${worksrcdir}/${package_name}
30}