summaryrefslogtreecommitdiffstats
path: root/makePackage
blob: ec76338c17add7ebbd15fe9262c6d8b45fcc68e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python

# The general algorithm this program follows goes like this:
#   Run tar to extract control from control.tar.gz from the package.
#   Insert the filename, size, and md5 lines before the description.
# Call it like this:
#  find . -name \*.opk | xargs -n 1 makePackage > Packages

import sys
import opkg

fn = sys.argv[1]
pkg = opkg.Package(fn)
print(pkg)