2018-09-17 18:34:04 +00:00
|
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
2017-05-06 17:23:18 +00:00
|
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - configure with --enable-compile-warnings=no
|
|
|
|
|
|
|
|
pkgname=gjs
|
2018-09-17 18:34:04 +00:00
|
|
|
pkgver=1.54.0+3+g15cf7c29
|
2017-05-06 17:23:18 +00:00
|
|
|
pkgrel=1
|
2018-09-17 18:34:04 +00:00
|
|
|
epoch=2
|
2017-05-06 17:23:18 +00:00
|
|
|
pkgdesc="Javascript Bindings for GNOME"
|
|
|
|
url="https://wiki.gnome.org/Projects/Gjs"
|
2017-11-19 01:45:06 +00:00
|
|
|
arch=(x86_64)
|
2017-05-06 17:23:18 +00:00
|
|
|
license=(GPL)
|
2018-09-17 18:34:04 +00:00
|
|
|
depends=(cairo gobject-introspection-runtime js60 gtk3)
|
2017-10-06 16:24:59 +00:00
|
|
|
makedepends=(gobject-introspection git autoconf-archive xorg-server-xvfb)
|
|
|
|
checkdepends=(valgrind)
|
2018-09-17 18:34:04 +00:00
|
|
|
_commit=15cf7c29d32785e3877f529154404b0906cba1f5 # gnome-3-30
|
2017-11-19 01:45:06 +00:00
|
|
|
source=("git+https://gitlab.gnome.org/GNOME/gjs.git#commit=$_commit")
|
2017-05-06 17:23:18 +00:00
|
|
|
sha256sums=('SKIP')
|
|
|
|
|
|
|
|
pkgver() {
|
|
|
|
cd $pkgname
|
|
|
|
git describe --tags | sed 's/-/+/g'
|
|
|
|
}
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd $pkgname
|
2018-09-17 18:34:04 +00:00
|
|
|
|
|
|
|
# We don't have C.UTF-8
|
|
|
|
sed -i 's|C\.UTF-8|en_US.UTF-8|g' Makefile-test.am test/test-ci.sh
|
|
|
|
|
2017-05-06 17:23:18 +00:00
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname
|
2018-04-10 12:28:44 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--disable-static \
|
|
|
|
--enable-compile-warnings=yes \
|
|
|
|
--with-xvfb-tests \
|
|
|
|
--enable-compile-warnings=no
|
2017-05-06 17:23:18 +00:00
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd $pkgname
|
2017-12-07 13:52:06 +00:00
|
|
|
make -j1 check
|
2017-05-06 17:23:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|