forked from archlinux/svntogit-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: file:///srv/repos/svn-packages/svn@318260 eb2447ed-0c53-47e4-bac8-5bc4a241df78
- Loading branch information
heftig
committed
Mar 8, 2018
1 parent
dba1a49
commit 214a78f
Showing
1 changed file
with
5 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,15 @@ | |
# Contributor: Ionut Biru <[email protected]> | ||
|
||
pkgname=at-spi2-atk | ||
pkgver=2.26.1 | ||
pkgver=2.26.1+2+g493b5a1 | ||
pkgrel=1 | ||
pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi" | ||
url="https://wiki.gnome.org/Accessibility" | ||
arch=(x86_64) | ||
license=(GPL2) | ||
depends=(at-spi2-core libx11 libxml2 atk) | ||
makedepends=(git meson) | ||
_commit=3ea01613fb9f10d67f45e931fa5664a68ac49a29 # tags/AT_SPI2_ATK_2_26_1^0 | ||
_commit=493b5a1c83b248f382b677a4f1fbfb7e31f0dc4f # master | ||
source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit") | ||
sha256sums=('SKIP') | ||
|
||
|
@@ -20,19 +20,16 @@ pkgver() { | |
} | ||
|
||
prepare() { | ||
mkdir build | ||
cd $pkgname | ||
} | ||
|
||
build() { | ||
cd build | ||
arch-meson ../$pkgname | ||
ninja | ||
arch-meson $pkgname build | ||
ninja -C build | ||
} | ||
|
||
package() { | ||
cd build | ||
DESTDIR="$pkgdir" ninja install | ||
DESTDIR="$pkgdir" ninja -C build install | ||
} | ||
|
||
# vim:set ts=2 sw=2 et: |