File bin/deb-build.sh copied from file bin/deb.sh (similarity 51%) (mode: 100755) (index 5aa5df0..dc2e3ca) |
1 |
1 |
#!/bin/bash |
#!/bin/bash |
2 |
2 |
|
|
|
3 |
|
rm -vf *.*~ |
|
4 |
|
|
3 |
5 |
# copy hstr/ source code to a work directory and run this script to create DEB package |
# copy hstr/ source code to a work directory and run this script to create DEB package |
4 |
|
mv -vf ../debian ../.. |
|
5 |
|
./dist.sh |
|
6 |
|
cd ../.. |
|
7 |
|
mv hstr hh-0.7 |
|
8 |
|
tar zcf hh-0.7.tgz hh-0.7 |
|
9 |
|
bzr dh-make hh 0.7 hh-0.7.tgz |
|
10 |
|
cd hh |
|
11 |
|
rm -rvf debian |
|
12 |
|
cp -vrf ../debian . |
|
13 |
|
bzr commit -m "Initial commit of Debian packaging." |
|
|
6 |
|
cd .. |
|
7 |
|
bzr commit -m "Sync." |
14 |
8 |
bzr builddeb -- -us -uc |
bzr builddeb -- -us -uc |
15 |
|
|
|
16 |
9 |
bzr builddeb -S && cd ../build-area && pbuilder-dist raring build hh_0.7-0ubuntu1.dsc |
bzr builddeb -S && cd ../build-area && pbuilder-dist raring build hh_0.7-0ubuntu1.dsc |
17 |
10 |
|
|
18 |
11 |
# eof |
# eof |
File debian/control changed (mode: 100644) (index 8c0d281..0656df0) |
1 |
1 |
Source: hh |
Source: hh |
2 |
|
Section: admin |
|
3 |
|
Priority: extra |
|
|
2 |
|
Section: universe/admin |
|
3 |
|
Priority: optional |
4 |
4 |
Maintainer: Martin Dvorak <martin.dvorak@mindforger.com> |
Maintainer: Martin Dvorak <martin.dvorak@mindforger.com> |
5 |
|
Build-Depends: debhelper (>= 8.0.0), autotools-dev |
|
|
5 |
|
Build-Depends: debhelper (>= 8.0.0), autotools-dev, libreadline-dev, libncurses5-dev |
6 |
6 |
Standards-Version: 3.9.4 |
Standards-Version: 3.9.4 |
7 |
7 |
Homepage: https://github.com/dvorka/hstr |
Homepage: https://github.com/dvorka/hstr |
8 |
8 |
Vcs-Git: https://github.com/dvorka/hstr.git |
Vcs-Git: https://github.com/dvorka/hstr.git |
|
... |
... |
Vcs-Browser: https://github.com/dvorka/hstr |
10 |
10 |
|
|
11 |
11 |
Package: hh |
Package: hh |
12 |
12 |
Architecture: any |
Architecture: any |
13 |
|
Depends: ${shlibs:Depends}, ${misc:Depends}, libreadline5 |
|
|
13 |
|
Depends: ${shlibs:Depends}, ${misc:Depends} |
14 |
14 |
Description: Suggest box like shell history completion |
Description: Suggest box like shell history completion |
15 |
15 |
A command line utility that brings improved shell command completion |
A command line utility that brings improved shell command completion |
16 |
16 |
from the history. It aims to make completion easier and faster than Ctrl-R. |
from the history. It aims to make completion easier and faster than Ctrl-R. |
|
17 |
|
Tag: implemented-in::c++, interface::commandline, role::program |