aboutsummaryrefslogtreecommitdiffstats
path: root/bs/pkginfo.sh
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-16 15:00:00 +0200
committerMax Kellermann <max@duempel.org>2008-10-16 15:00:00 +0200
commitc0a9ef980f94f12fdd9ba7d1949b2a05111b5ade (patch)
tree701f519b553d9f94ac396183146cd9f37cd55397 /bs/pkginfo.sh
parent9b5ce27c3b517c501bb13a534d50476e11751262 (diff)
downloadmpd-c0a9ef980f94f12fdd9ba7d1949b2a05111b5ade.tar.gz
mpd-c0a9ef980f94f12fdd9ba7d1949b2a05111b5ade.tar.xz
mpd-c0a9ef980f94f12fdd9ba7d1949b2a05111b5ade.zip
removed the "bs" build scripts
autotools are somewhat ugly, but that doesn't justify duplicating its effort with another complex build system.
Diffstat (limited to '')
-rwxr-xr-xbs/pkginfo.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/bs/pkginfo.sh b/bs/pkginfo.sh
deleted file mode 100755
index f04dded8f..000000000
--- a/bs/pkginfo.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-# sourcing this defines the folling variables:
-# p: package, v: version, b: bugreport email, pv: protocol version
-
-script='
-/^AC_INIT\(/ {
- gsub("[() ]","",$0);
- gsub("AC_INIT","",$1);
- print "p="$1;
- print "v="$2;
- print "b="$3;
-}
-/^AC_DEFINE\(PROTOCOL_VERSION, / {
- gsub("[\" ]", "", $2);
- print "pv="$2;
-}
-'
-
-eval $(awk -F, "$script" < configure.ac)