Commit b79b1ee15bccfd1bb1f3524abd2ddb50dd7ca64c
1 parent
359f8966
Exists in
master
Fixing "deb" package.
Showing
3 changed files
with
5 additions
and
11 deletions
Show diff stats
debian/control
... | ... | @@ -2,7 +2,7 @@ Source: python-tn3270 |
2 | 2 | Section: unknown |
3 | 3 | Priority: optional |
4 | 4 | Maintainer: Perry Werneck <perry.werneck@gmail.com> |
5 | -Build-Depends: debhelper (>= 7), autotools-dev, autoconf, gettext, python-dev, libipc3270-dev | |
5 | +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, gettext, python3-dev, libipc3270-dev | |
6 | 6 | |
7 | 7 | Package: python-tn3270 |
8 | 8 | Architecture: any | ... | ... |
debian/python-tn3270.dsc
... | ... | @@ -4,7 +4,7 @@ Version: 5.2-0 |
4 | 4 | Binary: python-tn3270 |
5 | 5 | Maintainer: Perry Werneck <perry.werneck@gmail.com> |
6 | 6 | Architecture: any |
7 | -Build-Depends: debhelper (>= 7), autotools-dev, autoconf, automake, python-dev, libipc3270-dev | |
7 | +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, automake, python-dev, libipc3270-dev, python3-dev | |
8 | 8 | Standards-Version: 3.9.1.0 |
9 | 9 | DEBTRANSFORM-RELEASE: 1 |
10 | 10 | Files: | ... | ... |
debian/rules
... | ... | @@ -20,14 +20,8 @@ build-stamp: |
20 | 20 | dh_testdir |
21 | 21 | |
22 | 22 | # Add here commands to compile the package. |
23 | - aclocal | |
24 | - autoconf | |
25 | - | |
26 | - ./configure | |
27 | - | |
28 | - rm -f debian/*.install | |
29 | - make clean | |
30 | - make Release | |
23 | + ./autogen.sh | |
24 | + make all | |
31 | 25 | # --- end custom part for compiling |
32 | 26 | |
33 | 27 | touch build-stamp |
... | ... | @@ -49,7 +43,7 @@ install: build |
49 | 43 | dh_clean -k |
50 | 44 | dh_installdirs |
51 | 45 | |
52 | - # Install ooRexx extension | |
46 | + # Install extension | |
53 | 47 | make DESTDIR=$(PWD)/debian/python-tn3270 install |
54 | 48 | |
55 | 49 | # Create updated file lists | ... | ... |