archpkgs/libgbinder/PKGBUILD
Gabriel Ebner bb64dd47ac git subrepo clone --branch=master https://aur.archlinux.org/libgbinder.git
subrepo:
  subdir:   "libgbinder"
  merged:   "08224bf"
upstream:
  origin:   "https://aur.archlinux.org/libgbinder.git"
  branch:   "master"
  commit:   "08224bf"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-01-16 17:14:54 +01:00

30 lines
676 B
Bash

# Maintainer: Danct12 <danct12@disroot.org>
pkgname=libgbinder
pkgver=1.1.16
pkgrel=1
pkgdesc="GLib-style interface to binder"
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
url="https://github.com/mer-hybris/libgbinder.git"
license=('BSD')
depends=('libglibutil' 'glib2')
makedepends=('git')
_commit="1bc2efd7249e1cf1b50d9ff1dcf57ffea528f0e9" # tags/1.1.16
source=(${pkgname}::git+https://github.com/mer-hybris/libgbinder.git#commit=${_commit})
sha512sums=('SKIP')
pkgver() {
cd ${pkgname}
git describe --tags | sed 's/^v//;s/-/+/g'
}
build() {
cd ${pkgname}
make KEEP_SYMBOLS=1 release pkgconfig
}
package() {
cd ${pkgname}
make install-dev DESTDIR="${pkgdir}"
}