blob: 3d1838323862e071ef8f2c2ef0814a847bb89090 (
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
31
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libxmu
pkgver=1.1.1
pkgrel=0
pkgdesc="X11 miscellaneous micro-utility library"
url="http://xorg.freedesktop.org/"
arch="all"
license="custom"
subpackages="$pkgname-dev $pkgname-doc"
depends=
makedepends="pkgconfig libxext-dev libxt-dev libx11-dev libsm-dev
util-linux-dev"
source="http://xorg.freedesktop.org/releases/individual/lib/libXmu-$pkgver.tar.bz2"
depends_dev="xproto libx11-dev libxt-dev libxext-dev util-linux-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
rm "$pkgdir"/usr/lib/*.la || return 1
install -Dm644 $srcdir/libXmu-$pkgver/COPYING \
$pkgdir/usr/share/licenses/$pkgname/COPYING
}
md5sums="a4efff8de85bd45dd3da124285d10c00 libXmu-1.1.1.tar.bz2"
|