summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f8a790ceab203dabbd6e98da11c0b50ee416c000 (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
# Contributor: ValHue <vhuelamo at gmail dot com>
# Contributor: Jan Alexander Steffens (heftig) <jan dot steffens at gmail dot com>
# Contributor: Ionut Biru <ibiru at archlinux dot org>
# Contributor: Sergej Pupykin <pupykin.s+arch at gmail dot com>

pkgname=libgee06
_pkgname=libgee
pkgver=0.6.8
pkgrel=1
pkgdesc="GObject collection library (legacy)"
url="https://gitlab.gnome.org/GNOME/libgee/-/tree/0.6.8"
license=('LGPL2.1')
arch=('i686' 'x86_64')
depends=('glib2')
makedepends=('gobject-introspection')
source=("https://ftp.gnome.org/pub/GNOME/sources/${_pkgname}/${pkgver::3}/${_pkgname}-${pkgver}.tar.xz")
sha256sums=('a61f8d796173d41f6144a030d4bd22461f0bb3fa18a3ebe02341b315feebf5d3')

build() {
    cd "${_pkgname}-${pkgver}"
    ./configure --prefix=/usr --disable-static
    make
}

package() {
    cd "${_pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install
}