37 lines
914 B
Bash
37 lines
914 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer:
|
|
# Contributor: Robert Tari <robert at tari dot in>
|
|
|
|
pkgname=ayatana-ido
|
|
pkgver=0.10.3
|
|
pkgrel=1
|
|
pkgdesc='Ayatana Indicator Display Objects'
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
url='https://github.com/AyatanaIndicators/ayatana-ido'
|
|
license=(LGPL-2.1-or-later
|
|
LGPL-3.0-or-later)
|
|
depends=(cairo
|
|
gdk-pixbuf2
|
|
glib2
|
|
glibc
|
|
gtk3
|
|
pango)
|
|
makedepends=(cmake
|
|
git
|
|
glib2-devel
|
|
gtest
|
|
gobject-introspection
|
|
vala)
|
|
source=(git+https://github.com/AyatanaIndicators/$pkgname#tag=$pkgver)
|
|
sha256sums=('cb4aaea3797a3e09cf19fcf936da30ace4d552034a7933bf19c6cb25077b7277')
|
|
|
|
build() {
|
|
cmake -B build -S $pkgname \
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
cmake --build build
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" cmake --install build
|
|
}
|