mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:37:13 +08:00
32 lines
958 B
Bash
32 lines
958 B
Bash
#
|
|
# Platform 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=libxfixes
|
|
pkgver=5.0
|
|
pkgrel=1
|
|
pkgdesc="X11 miscellaneous 'fixes' extension library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=('libx11' 'fixesproto>=5.0')
|
|
makedepends=('xorg-util-macros')
|
|
options=('!libtool')
|
|
source=(${url}/releases/individual/lib/libXfixes-${pkgver}.tar.bz2)
|
|
sha1sums=('3e4d374e9026111a04cd669d4b3434273fc34fe0')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXfixes-${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}/"
|
|
}
|