source: tags/1.2.0/Install/deb/build-deb-i386.sh

Last change on this file was 49, checked in by chronos, 8 years ago
  • Added: Install application shortcut to Linux main menu.
  • Property svn:executable set to *
File size: 987 bytes
Line 
1#!/bin/bash
2
3# 32-bit
4
5ARCH=i386
6
7cat >AcronymDecoder/DEBIAN/control << EOF
8Package: AcronymDecoder
9Version: 1.0.1
10Section: custom
11Priority: optional
12Architecture: i386
13Essential: no
14Installed-Size: 6461192
15Maintainer: Chronos <robie@centrum.cz>
16Description: A tool for quick searching of acronym meaning
17HomePage: http://svn.zdechov.net/trac/AcronymDecoder
18EOF
19
20mkdir -p AcronymDecoder/usr/bin
21cp ../../lib/$ARCH/AcronymDecoder AcronymDecoder/usr/bin
22mkdir -p AcronymDecoder/usr/share/AcronymDecoder
23cp ../../Languages/*.po AcronymDecoder/usr/share/AcronymDecoder/languages
24mkdir -p AcronymDecoder/usr/share/AcronymDecoder/Examples
25cp ../../Example\ acronyms.adp AcronymDecoder/usr/share/AcronymDecoder/Examples
26mkdir -p AcronymDecoder/usr/share/applications
27cp AcronymDecoder.desktop AcronymDecoder/usr/share/applications
28mkdir -p AcronymDecoder/usr/share/pixmaps
29cp ../../Images/Acronym\ Decoder.png AcronymDecoder/usr/share/pixmaps/AcronymDecoder.png
30dpkg-deb --build AcronymDecoder
Note: See TracBrowser for help on using the repository browser.