summaryrefslogtreecommitdiff
path: root/libre/glib2-static/PKGBUILD
blob: 71e1fc1d337da38c24985a925da7211f7149e0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Maintainer: Márcio Silva <coadde@hyperbola.info>
# based of glib2

pkgbase=glib2
pkgname=glib2-static
pkgver=2.50.2
pkgrel=1
pkgdesc="Low level core library (static libraries only)"
url="http://www.gtk.org/"
arch=(i686 x86_64 armv7h)
makedepends=(python git)
_commit=224f8171dceca920cfd8a4b446726b7610cdafd9 # tags/2.50.2^0
source=("git://git.gnome.org/glib#commit=$_commit"
        revert-warn-glib-compile-schemas.patch)
sha256sums=('SKIP'
            '049240975cd2f1c88fbe7deb28af14d4ec7d2640495f7ca8980d873bb710cc97')

pkgver() {
  cd glib
  git describe --tags | sed 's/-/+/g'
}

prepare() {
  cd glib
  patch -Rp1 -i ../revert-warn-glib-compile-schemas.patch
  NOCONFIGURE=1 ./autogen.sh
}
  
build() {
  cd glib
  ./configure --prefix=/usr --libdir=/usr/lib \
      --disable-fam --enable-static
  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
  make
}

check() {
  cd glib
  # Takes an effing long time
  #make -k check || :
}

package() {
  depends=(glib2)
  options=(staticlibs)
  license=(LGPL)

  cd glib
  make completiondir=/usr/share/bash-completion/completions DESTDIR="$pkgdir" install

  # remove conflicting files
  rm -vr ${pkgdir}/usr/{bin,lib/{glib-*,pkgconfig},include,share}
  rm -v ${pkgdir}/usr/lib/lib*.so*
}