1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-24 11:55:43 +00:00

added a script to build debian/ubuntu .deb, assuming nothing breaks in between

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@186 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Jason Tan 2005-08-26 02:26:54 +00:00
parent cdb2b0d388
commit eb6b308cb9
2 changed files with 17 additions and 1 deletions

16
buildubu.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
rm -rf ../conky-1.3.0* ../conky_*
make distclean
sh autogen.sh
./configure
make dist
cp -f conky-1.3.0.tar.gz ../conky_1.3.0.orig.tar.gz
cd ..
tar xvzf conky_1.3.0.orig.tar.gz
cd conky-1.3.0
#dh_make -s
cp -r ../conky/debian .
rm -rf debian/CVS
debuild
#dpkg-buildpackage -rfakeroot -S -k<private key id>

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
conky (1.3.0-0ubuntu1) breezy; urgency=low
conky (1.3.0-0ubuntu1) hoary; urgency=low
* Initial Release.
* This is my first Debian Package, hopefully it works.