Moved script to make package
authorMateusz Półrola <mateusz.polrola@comarch.pl>
Tue, 10 Aug 2010 11:19:56 +0000 (13:19 +0200)
committerMateusz Półrola <mateusz.polrola@comarch.pl>
Tue, 10 Aug 2010 11:19:56 +0000 (13:19 +0200)
make-package [new file with mode: 0755]
rename-plugins [new file with mode: 0755]
scripts/make-package [deleted file]
scripts/rename-plugins [deleted file]

diff --git a/make-package b/make-package
new file mode 100755 (executable)
index 0000000..03e1f6c
--- /dev/null
@@ -0,0 +1,9 @@
+#!/bin/bash
+APPNAME=mdictionary
+
+./setqmake
+dpkg-buildpackage -D -rfakeroot
+rm -rf builddir 
+rm build-stamp
+rm -rf debian/$APPNAME
+mv ../${APPNAME}_* packages/
diff --git a/rename-plugins b/rename-plugins
new file mode 100755 (executable)
index 0000000..23345f1
--- /dev/null
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+path=$1
+
+
+echo $path "ASDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
+
+pushd $path
+
+echo *
+
+rm `find . -name "*" -type l`
+
+for pro in  *; do
+    if [ -e "$pro" ] ; then  
+           pro=`echo $pro | cut -d"." -f1`
+            mv `find . -name "*.so.*" -type f` "$pro.so"
+    fi
+done
+popd
+    
diff --git a/scripts/make-package b/scripts/make-package
deleted file mode 100755 (executable)
index 03e1f6c..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-APPNAME=mdictionary
-
-./setqmake
-dpkg-buildpackage -D -rfakeroot
-rm -rf builddir 
-rm build-stamp
-rm -rf debian/$APPNAME
-mv ../${APPNAME}_* packages/
diff --git a/scripts/rename-plugins b/scripts/rename-plugins
deleted file mode 100755 (executable)
index 23345f1..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-path=$1
-
-
-echo $path "ASDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
-
-pushd $path
-
-echo *
-
-rm `find . -name "*" -type l`
-
-for pro in  *; do
-    if [ -e "$pro" ] ; then  
-           pro=`echo $pro | cut -d"." -f1`
-            mv `find . -name "*.so.*" -type f` "$pro.so"
-    fi
-done
-popd
-