summaryrefslogtreecommitdiffstats
path: root/debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-14 05:57:37 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-14 05:57:37 -0500
commitcd9a7c5ac8336feceecc70a1f7cac6aefe5c370b (patch)
tree4567e0fac77e81856682a39b4a3fc7b417ea5693 /debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl
parent46b27ed1c011f5950f5b0b3af13f315236857392 (diff)
downloadtde-packaging-cd9a7c5ac8336feceecc70a1f7cac6aefe5c370b.tar.gz
tde-packaging-cd9a7c5ac8336feceecc70a1f7cac6aefe5c370b.zip
Use autotools to build Amarok on Ubuntu and Debian
Diffstat (limited to 'debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl')
-rw-r--r--debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl b/debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl
new file mode 100644
index 000000000..9ce11d8a3
--- /dev/null
+++ b/debian/squeeze/applications/amarok.cmake/debian/cdbs/versions.pl
@@ -0,0 +1,19 @@
+#!/usr/bin/env perl
+
+use strict;
+use warnings;
+
+my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
+my ($version3, $version3_next);
+my ($version2, $version2_next);
+
+($version3 = $version) =~ s/-[^-]+$//;
+($version2 = $version3) =~ s/\.[^.]+$//;
+
+($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
+($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
+
+print "KDE-Version3=$version3\n";
+print "KDE-Version2=$version2\n";
+print "KDE-Next-Version3=$version3_next\n";
+print "KDE-Next-Version2=$version2_next\n";