blob: 226574c385ad9fdc2f8ce61ca9d8921b55d9c6e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libxmu
pkgver=1.1.0
pkgrel=0
pkgdesc="X11 miscellaneous micro-utility library"
url="http://xorg.freedesktop.org/"
arch="x86 x86_64"
license="custom"
subpackages="$pkgname-dev $pkgname-doc"
depends=
makedepends="pkgconfig libxext-dev libxt-dev libx11-dev libsm-dev
util-linux-ng-dev"
source="http://xorg.freedesktop.org/releases/individual/lib/libXmu-$pkgver.tar.bz2"
depends_dev="xproto libx11-dev libxt-dev libxext-dev util-linux-ng-dev"
build ()
{
cd "$srcdir"/libXmu-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc
make || return 1
}
package() {
cd "$srcdir"/libXmu-$pkgver
make DESTDIR="$pkgdir" install || return 1
install -Dm644 $srcdir/libXmu-$pkgver/COPYING \
$pkgdir/usr/share/licenses/$pkgname/COPYING
}
md5sums="6836883a0120e8346cf7f58dc42e465a libXmu-1.1.0.tar.bz2"
|