Projekt

Obecné

Profil

Stáhnout (3.04 KB) Statistiky
| Větev: | Tag: | Revize:
8baed187 Michal Kliment
#!/bin/sh
################################################################################
# Script for debianization of FreenetIS redirection and QoS package
# (c) Ondrej Fibich, 2012
#
c2e44ab0 Michal Kliment
# Takes two arguments (version of package - FreenetIS and debian version).
8baed187 Michal Kliment
#
################################################################################

c2e44ab0 Michal Kliment
if [ $# -ne 2 ]; then
8baed187 Michal Kliment
echo "Wrong arg count.. Terminating"
exit 1
fi

NAME=freenetis-redirection
VERSION=$1
c2e44ab0 Michal Kliment
DEBIAN=$2
8baed187 Michal Kliment
# create dirs ##################################################################
mkdir deb_packages/tmp
cd deb_packages/tmp

mkdir DEBIAN
mkdir etc
mkdir etc/init.d
mkdir etc/freenetis
mkdir usr
mkdir usr/sbin

# copy content of package ######################################################
cp ../../../redirection/freenetis-redirection.init.sh etc/init.d/${NAME}
cp ../../../redirection/freenetis-redirection-sync.sh usr/sbin/freenetis-redirection-sync
cp ../../../redirection/freenetis-http-302-redirection.py usr/sbin/
cp ../../../redirection/freenetis-redirection.conf etc/freenetis/

# count size
SIZE=`du -s etc usr | cut -f1 | paste -sd+ | bc`

# calculate checksum ###########################################################

find * -type f ! -regex '^DEBIAN/.*' -exec md5sum {} \; >> DEBIAN/md5sums

# create info files ############################################################

# create package info

echo "Package: ${NAME}" >> DEBIAN/control
c2e44ab0 Michal Kliment
echo "Version: ${VERSION}-${DEBIAN}" >> DEBIAN/control
8baed187 Michal Kliment
echo "Installed-Size: ${SIZE}" >> DEBIAN/control
c2e44ab0 Michal Kliment
if [ "$DEBIAN" = lenny ] || [ "$DEBIAN" = squeeze ]; then
echo "Depends: coreutils, ipset, wget, grep, procps, python, ipset-source, module-assistant, lsb-release" >> DEBIAN/control
else
echo "Depends: coreutils, ipset, wget, grep, procps, python, lsb-release" >> DEBIAN/control
fi

8baed187 Michal Kliment
cat ../../${NAME}/control >> DEBIAN/control

# change log

cat ../../${NAME}/changelog >> DEBIAN/changelog

# copywriting

echo "This package was debianized by Ondrej Fibich <ondrej.fibich@gmail.com> on" >> DEBIAN/copyright
date -R >> DEBIAN/copyright
echo "" >> DEBIAN/copyright
echo "It was downloaded from <http://freenetis.org/>" >> DEBIAN/copyright
echo "" >> DEBIAN/copyright
echo "Upstream Author:" >> DEBIAN/copyright
cat ../../../../../AUTHORS >> DEBIAN/copyright
echo "" >> DEBIAN/copyright
echo "License:" >> DEBIAN/copyright
cat ../../../../../COPYING >> DEBIAN/copyright

# scripts ######################################################################

cat ../../${NAME}/postinst >> DEBIAN/postinst
cat ../../${NAME}/prerm >> DEBIAN/prerm
cat ../../${NAME}/postrm >> DEBIAN/postrm
cat ../../${NAME}/templates >> DEBIAN/templates
cat ../../${NAME}/config >> DEBIAN/config

chmod +x DEBIAN/prerm DEBIAN/postinst DEBIAN/postrm DEBIAN/config

# create deb ###################################################################

# change owner of files to root (security)
cd ..
sudo chown -hR root:root *

# make package
c2e44ab0 Michal Kliment
sudo dpkg-deb -b tmp ${NAME}_${VERSION}+${DEBIAN}.deb
8baed187 Michal Kliment
# clean-up mess ################################################################

# clean
sudo rm -rf tmp