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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | set package_name python-ly |
---|
9 | set package_version 0.4 |
---|
10 | github.setup wbsoft frescobaldi ${package_name}-${package_version} |
---|
11 | name py-${package_name} |
---|
12 | version ${package_version} |
---|
13 | python.versions 26 27 32 33 |
---|
14 | maintainers gmail.com:davide.liessi openmaintainer |
---|
15 | description Tool and library for manipulating LilyPond files |
---|
16 | long_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. |
---|
19 | platforms darwin |
---|
20 | supported_archs noarch |
---|
21 | license GPL-2+ |
---|
22 | |
---|
23 | checksums rmd160 d1732b8d49343847cf43e1c27e0289dd5dbc1caf \ |
---|
24 | sha256 ffa8be8a0755cf3cd6de43149068a33472416b997ac817bf63ca1808912d4ef2 |
---|
25 | |
---|
26 | build {} |
---|
27 | |
---|
28 | pre-destroot { |
---|
29 | worksrcdir ${worksrcdir}/${package_name} |
---|
30 | } |
---|