Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New package: grandorgue-3.13.0 #46711

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions srcpkgs/grandorgue/template
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Template file for 'grandorgue'
pkgname=grandorgue
version=3.13.0
revision=1
archs="x86_64"
build_style="cmake"
configure_args="-DCMAKE_BUILD_TYPE=Release -G Ninja"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

neither of these need to be set. void sets the build type to None and the generator to ninja by default in common/build-style/cmake.sh

hostmakedepends="pkg-config git ImageMagick"
makedepends="jack-devel eudev-libudev-devel zlib-devel yaml-cpp-devel wxWidgets-devel wxWidgets-common-devel wxWidgets-gtk3-devel fftw-devel wavpack-devel alsa-lib-devel"
depends="gettext po4a zip"
short_desc="Pipe Organ Simulator"
maintainer="Nicolo Davis <nicolodavis@gmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/GrandOrgue/grandorgue"

export WX_CONFIG=wx-config-gtk3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this can probably be replaced with build_helper="cmake-wxWidgets-gtk3"


do_fetch() {
git clone --recurse-submodules --depth 1 --branch ${version}-${revision} https://github.com/GrandOrgue/grandorgue.git ${wrksrc}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do not use git clone to fetch. if a packages has submodules, they should be added as distfiles. see the edk2-ovmf template for an example.

cd ${wrksrc}
}