subrepo:
  subdir:   "libglibutil"
  merged:   "c8bcf3a"
upstream:
  origin:   "https://aur.archlinux.org/libglibutil.git"
  branch:   "master"
  commit:   "c8bcf3a"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
This commit is contained in:
Gabriel Ebner 2022-01-16 17:15:15 +01:00
parent bb64dd47ac
commit 99951ee7bd
3 changed files with 57 additions and 0 deletions

16
libglibutil/.SRCINFO Normal file
View File

@ -0,0 +1,16 @@
pkgbase = libglibutil
pkgdesc = Library of glib utilities
pkgver = 1.0.61
pkgrel = 1
url = https://github.com/sailfishos/libglibutil
arch = x86_64
arch = i686
arch = armv7h
arch = aarch64
license = BSD
makedepends = git
depends = glib2
source = libglibutil::git+https://github.com/sailfishos/libglibutil.git#commit=508e1255782e59725c25068874337e6309da04b2
sha512sums = SKIP
pkgname = libglibutil

12
libglibutil/.gitrepo Normal file
View File

@ -0,0 +1,12 @@
; DO NOT EDIT (unless you know what you are doing)
;
; This subdirectory is a git "subrepo", and this file is maintained by the
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
;
[subrepo]
remote = https://aur.archlinux.org/libglibutil.git
branch = master
commit = c8bcf3ae18a6d885070a85be32e6ebe76ee5ad43
parent = bb64dd47ac00d67bd455cde36a3a6360de2543aa
method = merge
cmdver = 0.4.3

29
libglibutil/PKGBUILD Normal file
View File

@ -0,0 +1,29 @@
# Maintainer: Danct12 <danct12@disroot.org>
pkgname=libglibutil
pkgver=1.0.61
pkgrel=1
pkgdesc="Library of glib utilities"
arch=('x86_64' 'i686' 'armv7h' 'aarch64')
url="https://github.com/sailfishos/libglibutil"
license=('BSD')
depends=('glib2')
makedepends=('git')
_commit="508e1255782e59725c25068874337e6309da04b2" # tags/1.0.61
source=(${pkgname}::git+https://github.com/sailfishos/libglibutil.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}"
}