core/xorg-iceauth/PKGBUILD
2015-11-16 22:11:40 +01:00

28 lines
752 B
Bash

# Maintainer: Drake Justice <djustice@chakraos.org>
pkgname=xorg-iceauth
pkgver=1.0.7
pkgrel=1
pkgdesc="ICE authority file utility"
arch=(x86_64)
url="http://xorg.freedesktop.org/"
license=('custom')
depends=('libice')
makedepends=('xorg-util-macros' 'xproto')
groups=('xorg-apps' 'xorg')
source=(http://xorg.freedesktop.org/archive/individual/app/iceauth-${pkgver}.tar.bz2)
sha256sums=('1216af2dee99b318fcf8bf9a259915273bcb37a7f1e7859af4f15d0ebf6f3f0a')
build() {
cd "${srcdir}/iceauth-${pkgver}"
./configure --prefix=/usr
make
}
package() {
cd "${srcdir}/iceauth-${pkgver}"
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}