diff options
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 14 |
2 files changed, 13 insertions, 9 deletions
@@ -1,7 +1,7 @@ pkgbase = writeas-gtk pkgdesc = Write.as GTK desktop app - pkgver = 1.0.0 - pkgrel = 3 + pkgver = 1.0.1 + pkgrel = 1 url = https://write.as/apps/desktop arch = x86_64 license = GPL3 @@ -10,8 +10,8 @@ pkgbase = writeas-gtk makedepends = vala depends = gtksourceview3 optdepends = writeas-cli: web publishing support - source = https://code.as/writeas/writeas-gtk/archive/v1.0.0.tar.gz - sha256sums = c6487821b5fbeef38ee50082d42a89be97b2fdbd5c3205d8a9c961ca0c3c7fbf + source = https://code.as/writeas/writeas-gtk/archive/v1.0.1.tar.gz + sha256sums = be97a35012cee110911bda517a87ed8a8ad1ce1634a8960b11b565449470245f pkgname = writeas-gtk @@ -1,8 +1,8 @@ # Maintainer: Sam Whited <sam@samwhited.com> pkgname=writeas-gtk -pkgver=1.0.0 -pkgrel=3 +pkgver=1.0.1 +pkgrel=1 pkgdesc='Write.as GTK desktop app' arch=('x86_64') url='https://write.as/apps/desktop' @@ -19,15 +19,19 @@ optdepends=( 'writeas-cli: web publishing support' ) source=("https://code.as/writeas/writeas-gtk/archive/v${pkgver}.tar.gz") -sha256sums=('c6487821b5fbeef38ee50082d42a89be97b2fdbd5c3205d8a9c961ca0c3c7fbf') +sha256sums=('be97a35012cee110911bda517a87ed8a8ad1ce1634a8960b11b565449470245f') prepare() { + # The build was failing across versions of meson, so always clean build. + # Why would anyone use a build system that breaks itself when you update it + # and requires so much detailed knowledge of how it works to get anything + # done? + rm -rf "${srcdir}/build" mkdir -p build } build() { - # Temporary workaround for https://github.com/mesonbuild/meson/issues/4247 - arch-meson "${pkgname}" build || arch-meson "${pkgname}" build --reconfigure + arch-meson "${pkgname}" build ninja -C build } |