core/xorg-iceauth/PKGBUILD
2014-06-28 15:30:10 -04:00

28 lines
752 B
Bash

# Maintainer: Drake Justice <djustice@chakraos.org>
pkgname=xorg-iceauth
pkgver=1.0.6
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=('bd990837353b439e6f45d478a87b8dbfa3f67d72d903e7a9ed4eb8de52f2e2f4')
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}/"
}