mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:37:13 +08:00
30 lines
780 B
Bash
30 lines
780 B
Bash
# Part of the X.org group
|
|
# Maintainer: Neophytos Kolokotronis <tetris4 AT gmail DOT com>
|
|
|
|
pkgname=libxmu
|
|
pkgver=1.1.2
|
|
pkgrel=1
|
|
pkgdesc="X11 miscellaneous micro-utility library"
|
|
arch=('x86_64')
|
|
url="http://xorg.freedesktop.org/"
|
|
depends=('libxext' 'libxt')
|
|
makedepends=('xorg-util-macros')
|
|
license=('custom')
|
|
options=('!libtool')
|
|
source=(${url}/releases/individual/lib/libXmu-${pkgver}.tar.bz2)
|
|
sha1sums=('7e6aeef726743d21aa272c424e7d7996e92599eb')
|
|
|
|
build() {
|
|
cd "${srcdir}/libXmu-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/libXmu-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
|
|
}
|