|
|||||||
Build package
Время создания: 18.07.2014 22:58
Раздел: root - Linux - Distro - Ubuntu
Запись: Yurons/mytetra/master/base/1405713505u3q9b1i3jg/text.html на raw.github.com
|
|||||||
|
|||||||
cd /tmp sudo apt-get build-dep <some packet> sudo apt-get install devscripts apt-get source <some packet> wget <last source>.tar.gz tar zxf <last source>.tar.gz cd <last source dir> rm -rf debian cp -a ../<source dir from apt>/debian . vi debian/changelog # change the first line: <last version> -> <version in file> debuild -i -uc -us -b That will create an febootstrap 3.14 .deb file in /tmp which you can install: sudo dpkg -i ../<created packege>.deb Some times have problem with patches --with-static-ldap --enable-plugins=all --enable-python --enable-nss=yes This will do everything to make full binary and source packages for you. It will:
|