Commit 473b9044 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt
Browse files

add thekno-chameleon utility script

parent 0eb97ba5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -11,3 +11,7 @@ insert_final_newline = true
[{Makefile,debian/rules,make.d/*}]
indent_style = tab
indent_size = 4

[*.sh]
indent_style = tab
indent_size = 4
+9 −0
Original line number Diff line number Diff line
@@ -10,3 +10,12 @@

# Log files
npm-debug.log*

# debian build files
debian/.debhelper/
debian/debhelper-build-stamp
debian/files
debian/tmp/
debian/*.substvars
debian/thekno/
debian/thekno-chameleon/
+18 −2
Original line number Diff line number Diff line
@@ -2,14 +2,30 @@ Source: thekno
Section: web
Priority: optional
Maintainer: Konrad Mohrfeldt <konrad.mohrfeldt@farbdev.org>
Standards-Version: 4.3.0
Standards-Version: 4.4.0
Build-Depends: debhelper (>= 9), dh-exec, nodejs, npm
Homepage: https://git.hack-hro.de/lohro/lohrothek/thekno

Package: thekno
Architecture: all
Depends: ${misc:Depends}
Depends:
 ${misc:Depends},
Suggests:
 ${misc:Suggests},
 thekno-chameleon,
Description: Vue-based music player app based on the lohrothek-api
 Thekno is a frontend and music player for the lohrothek-api backend.
 It is designed as a Progressive Web App (PWA) and optimized for
 mobile devices and desktops.

Package: thekno-chameleon
Architecture: all
Depends:
 ${misc:Depends},
 jo,
 imagemagick,
 optipng,
 wget,
Description: Helper util for generating branded thekno apps.
 thekno-chameleon uses thekno’s environment configuration to produce
 a PWA manifest and other assets.
+3 −2
Original line number Diff line number Diff line
@@ -3,12 +3,13 @@
#export DH_VERBOSE=1

%:
	dh $@ --package=thekno
	dh $@ --package thekno
	dh $@ --package thekno-chameleon

override_dh_auto_build:
	true

override_dh_auto_install:
	dh_auto_install --package thekno -- install
	dh_auto_install --package thekno --destdir debian/thekno -- install

# vim:ft=make:
+2 −0
Original line number Diff line number Diff line
#!/usr/bin/dh-exec
scripts/thekno-chameleon.sh => /usr/bin/thekno-chameleon
Loading