Changeset 49


Ignore:
Timestamp:
Jul 17, 2016, 10:47:50 AM (8 years ago)
Author:
chronos
Message:
  • Added: Install application shortcut to Linux main menu.
Location:
trunk/Install/deb
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Install/deb/build-deb-amd64.sh

    r48 r49  
    22
    33# 64-bit
     4
     5ARCH=x86_64-linux
     6
    47cat >AcronymDecoder/DEBIAN/control << EOF
    58Package: AcronymDecoder
     
    1518EOF
    1619
    17 cp ../../lib/x86_64-linux/AcronymDecoder AcronymDecoder/usr/bin
     20mkdir -p AcronymDecoder/usr/bin
     21cp ../../lib/$ARCH/AcronymDecoder AcronymDecoder/usr/bin
     22mkdir -p AcronymDecoder/usr/share/AcronymDecoder
    1823cp ../../Languages/*.po AcronymDecoder/usr/share/AcronymDecoder/languages
    19 cp ../../Example\ acronyms.adp AcronymDecoder/usr/share/AcronymDecoder
     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
    2030dpkg-deb --build AcronymDecoder
  • trunk/Install/deb/build-deb-i386.sh

    r48 r49  
    22
    33# 32-bit
     4
     5ARCH=i386
     6
    47cat >AcronymDecoder/DEBIAN/control << EOF
    58Package: AcronymDecoder
     
    1518EOF
    1619
    17 cp ../../lib/x86_64-linux/AcronymDecoder AcronymDecoder/usr/bin
     20mkdir -p AcronymDecoder/usr/bin
     21cp ../../lib/$ARCH/AcronymDecoder AcronymDecoder/usr/bin
     22mkdir -p AcronymDecoder/usr/share/AcronymDecoder
    1823cp ../../Languages/*.po AcronymDecoder/usr/share/AcronymDecoder/languages
    19 cp ../../Example\ acronyms.adp AcronymDecoder/usr/share/AcronymDecoder
     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
    2030dpkg-deb --build AcronymDecoder
Note: See TracChangeset for help on using the changeset viewer.