mirror of
https://github.com/archlinux/aur.git
synced 2026-03-13 19:04:45 +01:00
New upstream release 0.1.5
This commit is contained in:
parent
15535cf4e2
commit
93bd3644cd
2 changed files with 11 additions and 9 deletions
7
.SRCINFO
7
.SRCINFO
|
|
@ -1,12 +1,13 @@
|
|||
pkgbase = mnemo
|
||||
pkgdesc = Note-taking app designed to enhance the retention of information.
|
||||
pkgver = 0.1.3
|
||||
pkgver = 0.1.5
|
||||
pkgrel = 1
|
||||
url = https://github.com/lemueldls/mnemo
|
||||
arch = x86_64
|
||||
license = AGPL-3.0
|
||||
makedepends = cargo
|
||||
makedepends = nodejs
|
||||
makedepends = pnpm
|
||||
makedepends = git
|
||||
makedepends = file
|
||||
makedepends = appmenu-gtk-module
|
||||
|
|
@ -29,7 +30,7 @@ pkgbase = mnemo
|
|||
depends = openssl
|
||||
options = !strip
|
||||
options = !emptydirs
|
||||
source = mnemo-v0.1.3.tar.gz::https://github.com/lemueldls/mnemo/archive/refs/tags/mnemo-v0.1.3.tar.gz
|
||||
sha256sums = 35ad8188e9fad86ea91cb097cee0dd89a9983468ead817897239732621b5d57a
|
||||
source = mnemo-v0.1.5.tar.gz::https://github.com/lemueldls/mnemo/archive/refs/tags/mnemo-v0.1.5.tar.gz
|
||||
sha256sums = d6e06f55b088463fe31b239fb3db2058c248ac854000af1c8ed6165bbc6770c6
|
||||
|
||||
pkgname = mnemo
|
||||
|
|
|
|||
13
PKGBUILD
13
PKGBUILD
|
|
@ -1,29 +1,30 @@
|
|||
pkgname=mnemo
|
||||
pkgver=0.1.3
|
||||
pkgver=0.1.5
|
||||
pkgrel=1
|
||||
pkgdesc="Note-taking app designed to enhance the retention of information."
|
||||
arch=('x86_64')
|
||||
url="https://github.com/lemueldls/mnemo"
|
||||
license=('AGPL-3.0')
|
||||
depends=('cairo' 'desktop-file-utils' 'gdk-pixbuf2' 'glib2' 'gtk3' 'hicolor-icon-theme' 'libsoup' 'pango' 'webkit2gtk-4.1' 'openssl')
|
||||
makedepends=('cargo' 'nodejs' 'git' 'file' 'appmenu-gtk-module' 'libappindicator-gtk3' 'librsvg' 'base-devel' 'curl' 'wget' 'rustup' 'webkit2gtk-4.1') options=('!strip' '!emptydirs')
|
||||
makedepends=('cargo' 'nodejs' 'pnpm' 'git' 'file' 'appmenu-gtk-module' 'libappindicator-gtk3' 'librsvg' 'base-devel' 'curl' 'wget' 'rustup' 'webkit2gtk-4.1') options=('!strip' '!emptydirs')
|
||||
source=("mnemo-v$pkgver.tar.gz::https://github.com/lemueldls/mnemo/archive/refs/tags/mnemo-v$pkgver.tar.gz")
|
||||
sha256sums=('35ad8188e9fad86ea91cb097cee0dd89a9983468ead817897239732621b5d57a')
|
||||
sha256sums=('d6e06f55b088463fe31b239fb3db2058c248ac854000af1c8ed6165bbc6770c6')
|
||||
_builddir="mnemo-mnemo-v$pkgver/platform"
|
||||
prepare() {
|
||||
cd "$srcdir/$_builddir" || exit 1
|
||||
export RUSTUP_TOOLCHAIN=stable
|
||||
rustup toolchain install $RUSTUP_TOOLCHAIN --target wasm32-unknown-unknown --profile minimal --no-self-update
|
||||
rustup toolchain install $RUSTUP_TOOLCHAIN --profile minimal --no-self-update # --target wasm32-unknown-unknown
|
||||
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
|
||||
cargo fetch --locked --target wasm32-unknown-unknown
|
||||
# cargo fetch --locked --target wasm32-unknown-unknown
|
||||
pnpm install
|
||||
}
|
||||
build() {
|
||||
cd "$srcdir/$_builddir" || exit 1
|
||||
# unfortunately LTOFLAGS -flto=auto set by /etc/makepkg.conf break linking as those are added to CFLAGS automatically
|
||||
# building will bail out with something like: undefined reference to 'ring_core_0_17_8_OPENSSL_ia32cap_P' when -flto=auto is set
|
||||
export CFLAGS="${CFLAGS//-flto=auto//}"
|
||||
export NODE_OPTIONS=--max-old-space-size=8192
|
||||
export NUXT_PUBLIC_API_BASE_URL="https://notes.lemueldls.workers.dev"
|
||||
pnpm install
|
||||
pnpm tauri build -b deb -c "${srcdir}/${_builddir}/tauri/tauri.package.conf.json" || true
|
||||
}
|
||||
package() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue