diff options
author | Sam Whited | 2018-12-15 08:25:16 -0600 |
---|---|---|
committer | Sam Whited | 2018-12-15 08:25:16 -0600 |
commit | 994ef12092b4a0506c662388def5b079f8d6b519 (patch) | |
tree | 2f207966ac2589753805f0b70fb02dae2bad9098 | |
parent | 352a771a67003f327d18b4861e5c9e9a0da378f1 (diff) | |
download | aur-994ef12092b4a0506c662388def5b079f8d6b519.tar.gz |
Bump to v1.0.1
-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 } |