diff options
author | Gonzalo Exequiel Pedone | 2024-05-06 13:31:28 -0300 |
---|---|---|
committer | Gonzalo Exequiel Pedone | 2024-05-06 13:31:28 -0300 |
commit | f54530026b17be508cbcaeb7cb8af8eb21a09ed9 (patch) | |
tree | 11aa5c53fd0738eb2b58b7c2ebcbec8129159d23 | |
parent | 112f90ed90d137a6364e5bb01234bfa8eb971024 (diff) | |
download | aur-f54530026b17be508cbcaeb7cb8af8eb21a09ed9.tar.gz |
Package updated to 1.20.1.
-rw-r--r-- | .SRCINFO | 9 | ||||
-rw-r--r-- | PKGBUILD | 13 |
2 files changed, 12 insertions, 10 deletions
@@ -1,16 +1,17 @@ pkgbase = android-armv7a-eabi-xorg-util-macros - pkgdesc = X.Org Autotools macros - pkgver = 1.20.0 + pkgdesc = X.Org Autotools macros (Android armv7a-eabi) + pkgver = 1.20.1 pkgrel = 1 url = https://xorg.freedesktop.org/ arch = any license = custom makedepends = android-configure + depends = android-ndk options = !strip options = !buildflags options = staticlibs options = !emptydirs - source = https://xorg.freedesktop.org//releases/individual/util/util-macros-1.20.0.tar.xz - sha512sums = 76caefb118bf1675d7b2b96e1bbb04eb9a320b02e120839e55a22ef98538ecf00d0e686a67186fc8fdc8492d277ffe3125ae8b7ac61ce4739edc0de3f468d2eb + source = https://xorg.freedesktop.org//releases/individual/util/util-macros-1.20.1.tar.xz + md5sums = 35a4f264a9852be4ae66f07d4100356e pkgname = android-armv7a-eabi-xorg-util-macros @@ -5,26 +5,27 @@ _android_arch=armv7a-eabi pkgname=android-${_android_arch}-xorg-util-macros -pkgver=1.20.0 +pkgver=1.20.1 pkgrel=1 -pkgdesc="X.Org Autotools macros" arch=('any') +pkgdesc="X.Org Autotools macros (Android ${_android_arch})" license=('custom') url="https://xorg.freedesktop.org/" -options=(!strip !buildflags staticlibs !emptydirs) +depends=('android-ndk') makedepends=('android-configure') +options=(!strip !buildflags staticlibs !emptydirs) source=("${url}/releases/individual/util/util-macros-${pkgver}.tar.xz") -sha512sums=('76caefb118bf1675d7b2b96e1bbb04eb9a320b02e120839e55a22ef98538ecf00d0e686a67186fc8fdc8492d277ffe3125ae8b7ac61ce4739edc0de3f468d2eb') +md5sums=('35a4f264a9852be4ae66f07d4100356e') build() { - cd "util-macros-${pkgver}" + cd "${srcdir}/util-macros-${pkgver}" android-${_android_arch}-configure make $MAKEFLAGS } package() { - cd "util-macros-${pkgver}" + cd "${srcdir}/util-macros-${pkgver}" make DESTDIR="${pkgdir}" install } |