Brad Bishop | 5fd21d4 | 2016-11-04 12:33:27 -0400 | [diff] [blame] | 1 | SUMMARY = "A port of Ruby on Rails inflector to Python" |
| 2 | DESCRIPTION = "Inflection is a string transformation library. It singularizes \ |
| 3 | and pluralizes English words, and transforms strings from CamelCase to \ |
| 4 | underscored string. Inflection is a port of Ruby on Rails’ inflector to Python." |
| 5 | HOMEPAGE = "http://github.com/jpvanhal/inflection" |
| 6 | SECTION = "devel/python" |
| 7 | LICENSE = "MIT" |
| 8 | LIC_FILES_CHKSUM = "file://LICENSE;md5=de7833d9c2ce0052a4073928c76a13d7" |
| 9 | |
| 10 | inherit allarch |
| 11 | inherit setuptools |
Brad Bishop | e7ef0c3 | 2018-03-16 11:16:46 -0400 | [diff] [blame] | 12 | inherit pypi |
Brad Bishop | 5fd21d4 | 2016-11-04 12:33:27 -0400 | [diff] [blame] | 13 | |
Brad Bishop | 5fd21d4 | 2016-11-04 12:33:27 -0400 | [diff] [blame] | 14 | RDEPENDS_${PN} += " \ |
| 15 | ${PYTHON_PN}-re \ |
| 16 | ${PYTHON_PN}-codecs \ |
| 17 | " |
| 18 | RDEPENDS_${PN}_class-native = "" |
| 19 | |
| 20 | BBCLASSEXTEND = "native nativesdk" |