diff options
author | Vince Mele <vmele@inoc.com> | 2017-11-30 13:48:33 -0600 |
---|---|---|
committer | Henrik Riomar <henrik.riomar@gmail.com> | 2018-07-22 23:48:52 +0200 |
commit | 62e25727b31fb0ff42116a115b8b041b3af55061 (patch) | |
tree | f570cf716dce64cd41ee515a4338b0dbca3572d0 /testing/ding-libs | |
parent | 2ea3c709780a1e48072f8243ce6a86a348ecbd8e (diff) | |
download | aports-62e25727b31fb0ff42116a115b8b041b3af55061.tar.bz2 aports-62e25727b31fb0ff42116a115b8b041b3af55061.tar.xz |
testing/ding-libs: new aport
https://github.com/SSSD/ding-libs
"DING is not GNU" helper libraries for SSSD and FreeIPA
Diffstat (limited to 'testing/ding-libs')
-rw-r--r-- | testing/ding-libs/APKBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/testing/ding-libs/APKBUILD b/testing/ding-libs/APKBUILD new file mode 100644 index 0000000000..0280c7f7a9 --- /dev/null +++ b/testing/ding-libs/APKBUILD @@ -0,0 +1,35 @@ +# Contributor: Vince Mele <vmele@inoc.com> +# Maintainer: Vince Mele <vmele@inoc.com> +pkgname=ding-libs +pkgver=0.6.1 +pkgrel=0 +pkgdesc="'D is not GLib' utility libraries" +url="https://pagure.io/SSSD/ding-libs/" +arch="all" +license="GPL3 LGPL3" +depends="" +makedepends="icu-dev gettext-dev doxygen" +install="" +subpackages="" +source="https://releases.pagure.org/SSSD/$pkgname/$pkgname-$pkgver.tar.gz" +builddir="$srcdir/$pkgname-$pkgver" + +build() { + cd "$builddir" + ./configure --prefix=/usr --disable-static + make all +} + +check() { + cd "$builddir" +# make check +} + +package() { + cd "$builddir" + make DESTDIR="$pkgdir/" install + + rm -rf $pkgdir/usr/share +} + +sha512sums="335a0925bfa7cc113e86c91ad3f2c8aac12711879d5c9b62660140a4b749335a74024c987fcd2304dd78176362997b3e0ebd745193aaffab7a368e2873118628 ding-libs-0.6.1.tar.gz" |