File: makeallroot

package info (click to toggle)
multisync 0.82-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,240 kB
  • ctags: 5,497
  • sloc: ansic: 36,431; sh: 17,141; yacc: 1,377; makefile: 858
file content (17 lines) | stat: -rwxr-xr-x 359 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# This script will make and install everything, as well as create
# all rpms. Root part.

version=`cat configure | grep "VERSION=" | grep -v PACKAGE_VERSION | sed -e 's/VERSION=//g' | sed -e 's/ //g'`
srcdir=`pwd`

make install
for dir in ${srcdir}/plugins/*; do
   cd ${dir}
   make install
done

cd ${srcdir}
rpmbuild -bb specs/*.spec
sleep 1s