From cbea8b0f3186405d22b2504504e34c6c0bc5269b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20R=C3=B8dseth?= Date: Fri, 23 Aug 2019 12:41:04 +0000 Subject: [PATCH] upgpkg: 1.2_rc2-1 --- PKGBUILD | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 027456f..79d5515 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,14 @@ # Maintainer: Alexander F. Rødseth pkgname=sway -pkgver=1.1.1 -pkgrel=3 +pkgver=1.2_rc2 +pkgrel=1 pkgdesc='Tiling Wayland compositor and replacement for the i3 window manager' arch=(x86_64) url='https://swaywm.org/' license=(MIT) -depends=(cairo gdk-pixbuf2 json-c pango pcre swaybg ttf-font 'wlroots>=0.6.0') -makedepends=(meson ninja scdoc wayland-protocols) +depends=(cairo gdk-pixbuf2 json-c pango pcre swaybg ttf-font 'wlroots>=0.6') +makedepends=(git meson ninja scdoc setconf wayland-protocols) backup=(etc/sway/config) optdepends=( 'dmenu: Application launcher' @@ -24,23 +24,23 @@ optdepends=( 'waybar: Highly customizable bar' 'xorg-server-xwayland: X11 support' ) -validpgpkeys=("9DDA3B9FA5D58DD5392C78E652CB6609B22DA89A") # Drew DeVault -source=( - "$pkgname-$pkgver.tar.gz::https://github.com/swaywm/$pkgname/archive/$pkgver.tar.gz" - "https://github.com/swaywm/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.gz.sig" -) -sha256sums=('740bf97556c54da83937a255113d715aaa05e05b44d61fbe85e01b53ff1f9922' - 'SKIP') +source=("git+https://github.com/swaywm/sway#tag=${pkgver/_/-}") +md5sums=('SKIP') + +prepare() { + # Set the version information to 'Arch Linux' instead of 'makepkg' + sed -i "s/branch \\\'@1@\\\'/Arch Linux/g" $pkgname/meson.build +} build() { mkdir -p build - arch-meson build $pkgname-$pkgver -D werror=false -D b_ndebug=true + arch-meson build $pkgname -D werror=false -D b_ndebug=true ninja -C build } package() { DESTDIR="$pkgdir" ninja -C build install - install -Dm644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 $pkgname/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim: ts=2 sw=2 et