Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: helio-sequencer-3.12
@ 2024-03-18 20:18 iFoundSilentHouse
  2024-03-18 20:26 ` [PR PATCH] [Updated] " iFoundSilentHouse
                   ` (57 more replies)
  0 siblings, 58 replies; 59+ messages in thread
From: iFoundSilentHouse @ 2024-03-18 20:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1246 bytes --]

There is a new pull request by iFoundSilentHouse against master on the void-packages repository

https://github.com/iFoundSilentHouse/void-packages helio-sequencer-3.12
https://github.com/void-linux/void-packages/pull/49361

New package: helio-sequencer-3.12
New package: helio-sequencer

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - i686


A patch file from https://github.com/void-linux/void-packages/pull/49361.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-helio-sequencer-3.12-49361.patch --]
[-- Type: text/x-diff, Size: 2593 bytes --]

From 43bf9a6553c88097e374c30a314078b8ad7bd942 Mon Sep 17 00:00:00 2001
From: IFoundSilentHouse <adeptslab@gmail.com>
Date: Tue, 19 Mar 2024 02:12:13 +0600
Subject: [PATCH] New package: helio-sequencer-3.12

New package: helio-sequencer
---
 srcpkgs/helio-sequencer/template | 51 ++++++++++++++++++++++++++++++++
 1 file changed, 51 insertions(+)
 create mode 100644 srcpkgs/helio-sequencer/template

diff --git a/srcpkgs/helio-sequencer/template b/srcpkgs/helio-sequencer/template
new file mode 100644
index 00000000000000..6ae40e33b3fc0a
--- /dev/null
+++ b/srcpkgs/helio-sequencer/template
@@ -0,0 +1,51 @@
+# Template file for 'helio-sequencer'
+pkgname=helio-sequencer
+version=3.12
+_gitrev="61f7db380f083b424418d65f4e26addc1370ddea"
+revision=1
+archs="i686* x86_64* aarch64* armv[67]*"
+hostmakedepends="git pkg-config"
+makedepends="freetype-devel libX11-devel libXinerama-devel libXrandr-devel libXcursor-devel libXcomposite-devel MesaLib-devel libfreeglut-devel libcurl-devel alsa-lib-devel jack-devel libsigc++-devel"
+depends="curl freetype libXinerama libglvnd alsa-lib"
+short_desc="One music sequencer for all major platforms, desktop and mobile"
+maintainer="IFoundSilentHouse <adeptslab@gmail.com>"
+license="GPL-3.0-or-later"
+homepage="https://helio.fm/"
+changelog="https://github.com/helio-fm/helio-sequencer/blob/develop/CHANGELOG.md"
+
+do_fetch() {
+        # commit 61f7db3 is a commit of stable version 3.12
+        # helio-sequencer has thirdparty repos in its' github 
+        # so we have to use this do_fetch() hack
+        git clone --recursive https://github.com/helio-fm/helio-sequencer.git $wrksrc
+        cd $wrksrc
+        git reset --hard ${_gitrev}
+}
+
+do_build() {
+        case "$XBPS_TARGET_MACHINE" in
+                i686*|armv[67]*) export CONFIG=Release32 ;;
+                x86_64*|aarch64*) export CONFIG=Release64 ;;
+        esac
+        cd $wrksrc/Projects/LinuxMakefile/
+        make all strip
+        cd $wrksrc/Docs
+}
+
+do_install() {
+        cd $wrksrc
+        vbin Projects/LinuxMakefile/build/helio
+}
+
+post_install() {
+        cd $wrksrc
+        vinstall Projects/Deployment/Linux/Debian/x64/usr/share/applications/Helio.desktop 644 usr/share/applications
+        cd $wrksrc/Projects/Deployment/Linux/Debian/x64/usr/share/icons/hicolor/
+        vmkdir usr/share/icons/hicolor/
+        for _i in 16 32 48 128 256; do
+                vinstall ${_i}x${_i}/apps/helio-workstation.png 644 usr/share/icons/hicolor/${_i}x${_i}/apps helio-workstation.png
+        done
+        cd $wrksrc
+        vlicense LICENSE
+}
+

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2024-03-28 15:47 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-18 20:18 [PR PATCH] New package: helio-sequencer-3.12 iFoundSilentHouse
2024-03-18 20:26 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-03-18 20:31 ` iFoundSilentHouse
2024-03-18 20:37 ` iFoundSilentHouse
2024-03-18 20:40 ` iFoundSilentHouse
2024-03-18 20:50 ` iFoundSilentHouse
2024-03-19 12:36 ` [PR REVIEW] " ahesford
2024-03-19 12:36 ` ahesford
2024-03-19 12:36 ` ahesford
2024-03-19 12:36 ` ahesford
2024-03-19 12:36 ` ahesford
2024-03-19 12:36 ` ahesford
2024-03-19 13:15 ` iFoundSilentHouse
2024-03-19 13:25 ` iFoundSilentHouse
2024-03-19 13:26 ` iFoundSilentHouse
2024-03-19 13:27 ` iFoundSilentHouse
2024-03-19 13:28 ` iFoundSilentHouse
2024-03-19 13:29 ` iFoundSilentHouse
2024-03-19 13:32 ` ahesford
2024-03-19 13:34 ` ahesford
2024-03-19 13:36 ` ahesford
2024-03-19 13:37 ` ahesford
2024-03-19 14:13 ` iFoundSilentHouse
2024-03-19 14:20 ` ahesford
2024-03-19 14:30 ` [PR PATCH] [Closed]: " iFoundSilentHouse
2024-03-19 18:58 ` [PR REVIEW] " meator
2024-03-19 21:04 ` iFoundSilentHouse
2024-03-19 21:12 ` meator
2024-03-19 21:38 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-03-19 21:42 ` [PR REVIEW] " meator
2024-03-19 21:44 ` meator
2024-03-19 21:53 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-03-19 22:01 ` iFoundSilentHouse
2024-03-20  0:15 ` iFoundSilentHouse
2024-03-20  0:24 ` iFoundSilentHouse
2024-03-20  5:17 ` iFoundSilentHouse
2024-03-20  5:27 ` iFoundSilentHouse
2024-03-20  5:28 ` iFoundSilentHouse
2024-03-20  5:32 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-03-20  5:39 ` ahesford
2024-03-20  5:47 ` ahesford
2024-03-20  5:55 ` iFoundSilentHouse
2024-03-20  6:07 ` iFoundSilentHouse
2024-03-20  6:19 ` [PR PATCH] [Updated] " iFoundSilentHouse
2024-03-20  6:32 ` iFoundSilentHouse
2024-03-20  6:57 ` iFoundSilentHouse
2024-03-20  7:18 ` iFoundSilentHouse
2024-03-20  7:19 ` iFoundSilentHouse
2024-03-20  8:16 ` gmbeard
2024-03-20 11:32 ` ahesford
2024-03-20 11:52 ` iFoundSilentHouse
2024-03-20 12:12 ` [PR PATCH] [Closed]: " ahesford
2024-03-20 12:12 ` ahesford
2024-03-20 14:16 ` Johnnynator
2024-03-20 14:18 ` Johnnynator
2024-03-20 18:29 ` ahesford
2024-03-22  1:27 ` blacklightpy
2024-03-23 21:53 ` [PR REVIEW] " meator
2024-03-28 15:47 ` blacklightpy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).