git » libxfce4util.git » main » tree

[main] / PKGBUILD

# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: tobias <tobias funnychar archlinux.org>

pkgname=libxfce4util
pkgver=4.18.2
pkgrel=1
pkgdesc="Basic utility non-GUI functions for Xfce"
arch=('armv7h' 'aarch64')
url="https://www.xfce.org/"
license=('GPL2')
depends=('glib2')
makedepends=('intltool' 'gobject-introspection' 'vala')
source=(https://archive.xfce.org/src/xfce/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
sha256sums=('d9a329182b78f7e2520cd4aafcbb276bbbf162f6a89191676539ad2e3889c353')

build() {
  cd $pkgname-$pkgver

  ./configure \
    --prefix=/usr \
    --sysconfdir=/etc \
    --localstatedir=/var \
    --disable-debug
  make
}

package() {
  cd $pkgname-$pkgver
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: