mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
32 lines
962 B
Bash
32 lines
962 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=libxxf86misc
|
|
pkgver=1.0.3
|
|
pkgrel=1
|
|
pkgdesc="X11 XFree86 miscellaneous extension library"
|
|
arch=(i686 x86_64)
|
|
url="http://xorg.freedesktop.org/"
|
|
license=('custom')
|
|
depends=(libxext xf86miscproto)
|
|
makedepends=(pkgconfig)
|
|
options=(!libtool)
|
|
source=(${url}/releases/individual/lib/libXxf86misc-${pkgver}.tar.bz2)
|
|
md5sums=('6bc0bf78909fd71021c466c793d4385c')
|
|
|
|
build() {
|
|
cd ${srcdir}/libXxf86misc-${pkgver}
|
|
./configure --prefix=/usr --mandir=/usr/share/man --disable-static \
|
|
--build=${CHOST} --host=${CHOST}
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
|
|
}
|
|
|