initial commit

This commit is contained in:
Tim Ruehsen 2014-05-23 09:53:19 +02:00
commit 697a02750c
1 changed files with 13 additions and 0 deletions

13
make_deb Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
# see https://wiki.debian.org/Courses2005/BuildingWithoutHelper
git clone https://github.com/rockdaboot/libpsl
version=`(cd libpsl; git tag|tail -1)`
mv libpsl libpsl-${version}
cd libpsl-${version}
./autogen.sh
./configure --enable-gtk-doc --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
make dist
#mv libpsl-${version}.tar.gz libpsl_${version}.orig.tar.gz
dh_make -l --createorig -f libpsl-${version}.tar.gz