Merge branch 'develop' into feature/background-crossfade
This commit is contained in:
commit
2296d257dd
|
@ -0,0 +1,22 @@
|
|||
DESTDIR=./
|
||||
INSTALL_LOCATION=$(DESTDIR)/opt/pitaya
|
||||
ELECTRON_ARCH=x64
|
||||
|
||||
ifeq ($(DEB_TARGET_ARCH), i386)
|
||||
ELECTRON_ARCH=ia32
|
||||
endif
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
apt-get install --yes --no-install-recommends curl ca-certificates
|
||||
curl --silent --location https://deb.nodesource.com/setup_0.12 | bash -
|
||||
apt-get install --yes nodejs
|
||||
npm install --ignore-scripts
|
||||
npm run clean
|
||||
npm run compile
|
||||
npm run package -- --arch=$(ELECTRON_ARCH)
|
||||
|
||||
install:
|
||||
mkdir -p $(INSTALL_LOCATION)
|
||||
cp -r build/pitaya-linux-$(ELECTRON_ARCH)/* $(INSTALL_LOCATION)/
|
|
@ -105,6 +105,9 @@ html, body {
|
|||
|
||||
.launcher .category-header > .category-label {
|
||||
float: right;
|
||||
font-size: 46px;
|
||||
letter-spacing: -4px;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.launcher .category-header .goback {
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
pitaya (0.0.0) unstable; urgency=low
|
||||
|
||||
* Initial release (Closes: #nnnn) <nnnn is the bug number of your ITP>
|
||||
|
||||
-- William Petit <wpetit@cadoles.com> Fri, 16 Oct 2015 15:57:03 +0200
|
|
@ -0,0 +1 @@
|
|||
9
|
|
@ -0,0 +1,13 @@
|
|||
Source: pitaya
|
||||
Section: unknown
|
||||
Priority: optional
|
||||
Maintainer: William Petit <wpetit@cadoles.com>
|
||||
Build-Depends: debhelper (>= 8.0.0)
|
||||
Standards-Version: 3.9.4
|
||||
Homepage:
|
||||
Vcs-Git: https://forge.cadoles.com/wpetit/pitaya.git
|
||||
Vcs-Browser: https://forge.cadoles.com/wpetit/pitaya
|
||||
|
||||
Package: pitaya
|
||||
Architecture: any
|
||||
Description: Lanceur d'application pour GNU/Linux
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/make -f
|
||||
# -*- makefile -*-
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
export DH_VERBOSE=1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
override_dh_makeshlibs:
|
||||
# Disabled
|
||||
|
||||
override_dh_shlibdeps:
|
||||
# Disabled
|
||||
|
||||
override_dh_strip:
|
||||
# Disabled
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
|
@ -13,9 +13,9 @@
|
|||
"scripts": {
|
||||
"test": "./node_modules/.bin/nodeunit test",
|
||||
"start": "./node_modules/.bin/electron .",
|
||||
"compile": "./node_modules/.bin/jsx -x js src dist",
|
||||
"compile": "./node_modules/.bin/jsx -x js --no-cache-dir src dist",
|
||||
"clean": "rm -rf dist/* build/*",
|
||||
"package": "./node_modules/.bin/electron-packager ./ pitaya --prune --ignore=res/ --platform=linux --arch=ia32,x64 --version=0.33.6 --out=build --overwrite --app-version 0.0.0",
|
||||
"package": "./node_modules/.bin/electron-packager ./ pitaya --out=./build --app-version 0.0.0 --version=0.33.6 --prune --ignore='/res(/|$)' --ignore='/debian(/|$)' --ignore='/scripts(/|$)' --ignore='/build(/|$)' --ignore='/test(/|$)' --ignore='/electron-packager(/|$)' --ignore='/electron-tmp-.+(/|$)' --platform=linux --overwrite",
|
||||
"build": "npm run clean && npm run compile && npm run package"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in New Issue