Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Prateek Mishra
purr-data
Commits
c58d8f81
Commit
c58d8f81
authored
5 years ago
by
Jonathan Wilkes
Browse files
Options
Downloads
Plain Diff
Merge branch 'aggraef/purr-data-debuild-arm'
parents
54c59a88
27d1b0ed
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debuild/Makefile
+8
-1
8 additions, 1 deletion
debuild/Makefile
debuild/debian/rules
+4
-1
4 additions, 1 deletion
debuild/debian/rules
with
12 additions
and
2 deletions
debuild/Makefile
+
8
−
1
View file @
c58d8f81
...
...
@@ -42,9 +42,13 @@ debsrc = purr-data_$(debversion).orig.tar.gz
debdist
=
purr-data-
$(
debversion
)
# nw.js sdk
# NOTE: arm packages need some special-casing, since they are released
# separately, and the version numbers do not always match up.
nwjsver
=
0.24.4
nwjspkg
=
nwjs-sdk-v
$(
nwjsver
)
-linux
nwjs
=
$(
nwjspkg
)
-ia32
.tar.gz
$(
nwjspkg
)
-x64
.tar.gz
nwjsver_arm
=
0.24.5
nwjspkg_arm
=
nwjs-sdk-v
$(
nwjsver_arm
)
-linux
nwjs
=
$(
nwjspkg
)
-ia32
.tar.gz
$(
nwjspkg
)
-x64
.tar.gz
$(
nwjspkg_arm
)
-arm
.tar.gz
# Submodules (Gem, etc.). You can list them with 'make submodules'.
#submodules = Gem externals/miXed $(addprefix l2ork_addons/, cwiid fftease3.0-32bit lyonpotpourri rtcmix-in-pd)
...
...
@@ -110,5 +114,8 @@ $(debsrc):
tar
cfz
$(debsrc)
$(debdist)
rm
-rf
$(debdist)
debian/nwjs/$(nwjspkg_arm)-arm.tar.gz
:
mkdir
-p
debian/nwjs
&&
cd
debian/nwjs
&&
wget https://github.com/LeonardLaszlo/nw.js-armv7-binaries/releases/download/v
$(
nwjsver_arm
)
/
$(
notdir
$@
)
debian/nwjs/$(nwjspkg)-%.tar.gz
:
mkdir
-p
debian/nwjs
&&
cd
debian/nwjs
&&
wget http://dl.nwjs.io/v
$(
nwjsver
)
/
$(
notdir
$@
)
This diff is collapsed.
Click to expand it.
debuild/debian/rules
+
4
−
1
View file @
c58d8f81
...
...
@@ -7,7 +7,10 @@
nwjsver
=
0.24.4
nwjspkg
=
nwjs-sdk-v
$(
nwjsver
)
-linux
ifeq
("$(shell dpkg-architecture -qDEB_HOST_ARCH)","amd64")
ifeq
("$(shell dpkg-architecture -qDEB_HOST_ARCH)","armhf")
arch
=
arm
nwjsver
=
0.24.5
else
ifeq
("$(shell dpkg-architecture -qDEB_HOST_ARCH)","amd64")
arch
=
x64
else
arch
=
ia32
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment