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
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Jonathan Wilkes
purr-data
Commits
27d1b0ed
Commit
27d1b0ed
authored
5 years ago
by
Albert Gräf
Browse files
Options
Downloads
Patches
Plain Diff
debuild: Support for ARM (e.g., Raspbian).
parent
54c59a88
No related branches found
No related tags found
1 merge request
!309
debuild: Support for ARM (e.g., Raspbian).
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 @
27d1b0ed
...
...
@@ -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 @
27d1b0ed
...
...
@@ -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