9 lines
212 B
Python
9 lines
212 B
Python
# Simple program to save all package information
|
|
# into a file which can be sourced by a bash script
|
|
|
|
from swiftonhpss.swift import _pkginfo as pkginfo
|
|
|
|
PKGCONFIG = 'pkgconfig.in'
|
|
|
|
pkginfo.save_config(PKGCONFIG)
|