summaryrefslogtreecommitdiffstats
path: root/ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-27 20:24:21 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-27 20:24:21 -0600
commit6c7c61327875a1f75b5756189acca554b33ae26b (patch)
treea46e470db8546015b0e0cdd2ab079ceddcdac601 /ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl
parenta705dea5438e1deedc390415d95c41f119a64a56 (diff)
downloadtde-packaging-6c7c61327875a1f75b5756189acca554b33ae26b.tar.gz
tde-packaging-6c7c61327875a1f75b5756189acca554b33ae26b.zip
Use cmake to build abakus on Debian and Ubuntu
Diffstat (limited to 'ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl')
-rw-r--r--ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl b/ubuntu/maverick/applications/abakus/debian/cdbs/versions.pl
new file mode 100644
index 000000000..9ce11d8a3
--- /dev/null
+++ b/ubuntu/maverick/applications/abakus/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";