Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 1 | # Copyright (C) 2022 Khem Raj <raj.khem@gmail.com> |
| 2 | # Released under the MIT license (see COPYING.MIT for the terms) |
| 3 | |
| 4 | SUMMARY = "A Python bindings generator for C/C++ libraries" |
| 5 | |
| 6 | HOMEPAGE = "https://www.riverbankcomputing.com/software/sip/" |
| 7 | LICENSE = "GPL-2.0-or-later" |
| 8 | SECTION = "devel" |
| 9 | LIC_FILES_CHKSUM = "file://LICENSE-GPL2;md5=e91355d8a6f8bd8f7c699d62863c7303" |
| 10 | |
| 11 | inherit pypi setuptools3 python3native |
| 12 | |
| 13 | PYPI_PACKAGE = "sip" |
Patrick Williams | 3965356 | 2024-03-01 08:54:02 -0600 | [diff] [blame] | 14 | SRC_URI[sha256sum] = "888547b018bb24c36aded519e93d3e513d4c6aa0ba55b7cc1affbd45cf10762c" |
Patrick Williams | 169d7bc | 2024-01-05 11:33:25 -0600 | [diff] [blame] | 15 | |
| 16 | RDEPENDS:${PN} = " \ |
| 17 | python3-core \ |
| 18 | python3-packaging \ |
| 19 | python3-logging \ |
| 20 | python3-tomllib \ |
| 21 | python3-setuptools \ |
| 22 | " |
Patrick Williams | ac13d5f | 2023-11-24 18:59:46 -0600 | [diff] [blame] | 23 | |
| 24 | BBCLASSEXTEND = "native" |