1 # --- T2-COPYRIGHT-NOTE-BEGIN ---
2 # T2 SDE: package/*/python-gpep517/python-gpep517.conf
3 # Copyright (C) 2024 The T2 SDE Project
5 # This Copyright note is generated by scripts/Create-CopyPatch,
6 # more information can be found in the files COPYING and README.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License version 2.
10 # --- T2-COPYRIGHT-NOTE-END ---
16 hook_add inmake 5 pygpep517_inmake
17 hook_add postinstall 5 pygpep517_postinstall
20 local sitedir=$root$libdir/python/site-packages
21 cp -a gpep517/ $sitedir
22 python -m compileall $sitedir
25 pygpep517_postinstall() {
26 cat <<EOF > $root$bindir/gpep517
28 # -*- coding: utf-8 -*-
30 from gpep517.__main__ import main
31 if __name__ == "__main__":
34 chmod -v 755 $root$bindir/gpep517