wok view py3k-cparser/receipt @ rev 25482

created recipe for py3k-cparser
author Hans-G?nter Theisgen
date Mon Oct 17 07:46:10 2022 +0100 (18 months ago)
parents
children 54d60b77baf4
line source
1 # SliTaz package receipt.
3 PACKAGE="py3k-cparser"
4 VERSION="2.21"
5 CATEGORY="development"
6 SHORT_DESC="Complete C99 parser in pure Python."
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/eliben/pycparser/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/eliben/pycparser/archive/release_v$VERSION.tar.gz"
14 DEPENDS="py3k"
15 BUILD_DEPENDS="py3k"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 python3 setup.py install --prefix=/usr --root=$DESTDIR
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 cp -a $install/usr $fs/
27 }