George Hu pushed to branch main at Arch Linux / Packaging / Packages /
feathernotes
Commits:
d6af7a71 by George Hu at 2025-09-17T23:31:30+08:00
Format PKGBUILD
- - - - -
1 changed file:
- PKGBUILD
Changes:
=====================================
PKGBUILD
=====================================
@@ -5,22 +5,26 @@
pkgname=feathernotes
pkgver=1.3.2
pkgrel=1
-pkgdesc='Lightweight Qt hierarchical notes-manager'
+pkgdesc="Lightweight Qt hierarchical notes-manager"
arch=('x86_64')
-url='https://github.com/tsujan/FeatherNotes'
+url="https://github.com/tsujan/FeatherNotes"
license=('GPL-3.0-or-later')
depends=('hicolor-icon-theme' 'hunspell' 'qt6-svg')
makedepends=('cmake' 'qt6-tools')
-source=("https://github.com/tsujan/FeatherNotes/releases/download/V$pkgver/FeatherNotes-$pkgver.tar.xz"{,.asc})
+source=("${url}/releases/download/V${pkgver}/FeatherNotes-${pkgver}.tar.xz"{,.asc})
sha256sums=('c78371f6d584b884943ba9da5f93d60aec2cbd0018c7a4eb314b6c7e0bcf7171'
'SKIP')
validpgpkeys=('19DFDF3A579BD509DBB572D8BE793007AD22DF7E')
build() {
- cmake -S FeatherNotes-$pkgver -B build -DCMAKE_INSTALL_PREFIX='/usr'
- cmake --build build
+ cmake -S "FeatherNotes-${pkgver}" \
+ -B build \
+ -D CMAKE_BUILD_TYPE=None \
+ -D CMAKE_INSTALL_PREFIX=/usr
+
+ cmake --build build
}
package() {
- DESTDIR="$pkgdir" cmake --install build
+ DESTDIR="${pkgdir}" cmake --install build
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/feathernotes/-/commit/d6af7a71c44da6c0f052db221b6da05dfe3a1504
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/feathernotes/-/commit/d6af7a71c44da6c0f052db221b6da05dfe3a1504
You're receiving this email because of your account on gitlab.archlinux.org.