mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 00:37:44 +08:00
30 lines
897 B
Bash
30 lines
897 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=xorg-xauth
|
|
pkgver=1.0.5
|
|
pkgrel=2
|
|
pkgdesc="X.Org authorization settings program"
|
|
arch=(i686 x86_64)
|
|
license=('custom')
|
|
url="http://xorg.freedesktop.org/"
|
|
depends=('libxmu')
|
|
makedepends=('pkgconfig')
|
|
source=(${url}/releases/individual/app/xauth-${pkgver}.tar.bz2)
|
|
md5sums=('46fc44e5e947d3720f3be5054044ff0e')
|
|
|
|
build() {
|
|
cd "${srcdir}/xauth-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
install -d -m755 "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
|
|
}
|