File: UnixInstall.CMakeLists.txt

package info (click to toggle)
eln 1.5.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,876 kB
  • sloc: cpp: 26,606; perl: 796; python: 437; sh: 73; makefile: 32; xml: 8
file content (21 lines) | stat: -rw-r--r-- 913 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
install(TARGETS notedeln DESTINATION bin)
install(TARGETS webgrab DESTINATION bin)

install(FILES docs/man/notedeln.1 DESTINATION share/man/man1)
install(FILES docs/man/webgrab.1 DESTINATION share/man/man1)
install(FILES README.md DESTINATION share/doc/notedeln)
install(FILES CHANGELOG DESTINATION share/doc/notedeln)
install(FILES src/Gui/fonts/ubuntu-font-licence-1.0.txt.gz
  DESTINATION share/doc/notedeln)

foreach(RES IN ITEMS 8 16 22 24 32 48 64 128 256 512)
  install(FILES src/App/eln.iconset/eln_${RES}x${RES}.png
    DESTINATION share/icons/hicolor/${RES}x${RES}/apps
    RENAME notedeln.png)
  install(FILES src/App/eln.iconset/eln_${RES}x${RES}.png
    DESTINATION share/icons/hicolor/${RES}x${RES}/mimetypes
    RENAME application-notedeln-book.png)
endforeach()

install(PROGRAMS src/notedeln.desktop DESTINATION share/applications)
install(FILES src/notedeln.xml DESTINATION share/mime/packages)