mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:47:13 +08:00
31 lines
978 B
Bash
31 lines
978 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=libxres
|
|
pkgver=1.0.5
|
|
pkgrel=1
|
|
pkgdesc="X11 Resource extension library"
|
|
arch=(i686 x86_64)
|
|
url="http://xorg.freedesktop.org"
|
|
license=('custom')
|
|
depends=('libxext')
|
|
makedepends=('resourceproto' 'damageproto' 'compositeproto' 'scrnsaverproto' 'xorg-util-macros')
|
|
options=(!libtool)
|
|
source=(${url}/releases/individual/lib/libXres-${pkgver}.tar.bz2)
|
|
sha1sums=('d3a36f9b6ae430da91f2cbae409916f605074195')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXres-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
} |