summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 177eded925f5c9169e752c92fb8a9652dd1a1eef (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
# Maintainer: Kris McCleary <kris27mc@gmail.com>

_pkgname=libprotobuf
pkgname=lib32-$_pkgname-git
pkgver=v3.3.1.r256.g35db2675
pkgrel=2
pkgdesc="A language-neutral, platform-neutral extensible mechanism for serializing structured data."
url="https://developers.google.com/protocol-buffers/"
license=('custom')
arch=('x86_64')
depends=('lib32-zlib' 'lib32-gcc-libs')
makedepends=('gcc-multilib' 'curl' 'unzip')
source=("git+https://github.com/google/protobuf.git")
md5sums=('SKIP')

pkgver() {
    cd "${srcdir}/protobuf"
    git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    cd "${srcdir}/protobuf"

    ./autogen.sh
    #autoreconf -i
    export CC="gcc -m32"
    export CXX="g++ -m32"
    export PKG_CONFIG_PATH="/usr/lib32/pkgconfig"
    ./configure --build=i386-pc-linux-gnu CFLAGS="-m32 -DNDEBUG" CXXFLAGS="-m32 -DNDEBUG" LDFLAGS=-m32 --prefix=/usr --libdir=/usr/lib32
    make
}

package() {
    cd "${srcdir}/protobuf"

    make DESTDIR="$pkgdir" install
    rm -r "$pkgdir/usr/bin/"
    rm -r "$pkgdir/usr/include"
    install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/lib32-libprotobuf-git"
}