File: update_source.sh

package info (click to toggle)
kaffeine 2.0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 15,108 kB
  • sloc: cpp: 28,201; ansic: 535; xml: 457; sh: 205; makefile: 3
file content (14 lines) | stat: -rwxr-xr-x 232 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -eu

# not for production use

if [ "$(grep KAFFEINE_MAJOR_VERSION CMakeLists.txt)" == "" ]; then
  echo "Entering into the Kaffeine dir"
  cd kaffeine
fi

cmake -DBUILD_TOOLS=1 .
make updatesource

tools/updatesource