core/xorg-iceauth/PKGBUILD

28 lines
752 B
Bash
Raw Normal View History

2014-06-29 03:30:10 +08:00
# Maintainer: Drake Justice <djustice@chakraos.org>
pkgname=xorg-iceauth
2015-11-17 05:11:40 +08:00
pkgver=1.0.7
2014-06-29 03:30:10 +08:00
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)
2015-11-17 05:11:40 +08:00
sha256sums=('1216af2dee99b318fcf8bf9a259915273bcb37a7f1e7859af4f15d0ebf6f3f0a')
2014-06-29 03:30:10 +08:00
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}/"
}